ソースを参照

Changed the rebar command to exit non-zero on error.

pull/3/head
Jon Meredith 15年前
コミット
048179ab83
1個のファイルの変更6行の追加1行の削除
  1. +6
    -1
      priv/rebar

+ 6
- 1
priv/rebar ファイルの表示

@ -29,4 +29,9 @@
-include_lib("rebar/include/rebar.hrl").
main(Args) ->
rebar_core:run(Args).
case rebar_core:run(Args) of
ok ->
ok;
_ ->
halt(1)
end.

読み込み中…
キャンセル
保存