This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
SisMaker
/
rebar3
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
62
Wiki
Activity
Browse Source
Changed the rebar command to exit non-zero on error.
pull/3/head
Jon Meredith
15 years ago
parent
a0d48d89ae
commit
048179ab83
1 changed files
with
6 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-1
priv/rebar
+ 6
- 1
priv/rebar
View File
@ -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.
Write
Preview
Loading…
Cancel
Save