소스 검색

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.

불러오는 중...
취소
저장