소스 검색

Make sure to bail w/ return code of 1 when error has occurred

pull/3/head
Dave Smith 15 년 전
부모
커밋
af5096b6f0
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. +6
    -1
      src/rebar.erl

+ 6
- 1
src/rebar.erl 파일 보기

@ -27,4 +27,9 @@
-export([main/1]).
main(Args) ->
rebar_core:run(Args).
case catch(rebar_core:run(Args)) of
ok ->
ok;
_ ->
halt(1)
end.

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