瀏覽代碼

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.

Loading…
取消
儲存