Parcourir la source

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

pull/3/head
Jon Meredith il y a 15 ans
Parent
révision
048179ab83
1 fichiers modifiés avec 6 ajouts et 1 suppressions
  1. +6
    -1
      priv/rebar

+ 6
- 1
priv/rebar Voir le fichier

@ -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.

Chargement…
Annuler
Enregistrer