Skip to content

Commit

Permalink
Merge pull request technomancy#1434 from jcrossley3/patch-1
Browse files Browse the repository at this point in the history
Only exit if there are errors
  • Loading branch information
technomancy committed Feb 2, 2014
2 parents c50c7ee + 638b710 commit ae15ef0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/leiningen/check.clj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
(catch ExceptionInInitializerError e#
(swap! failures# inc)
(.printStackTrace e#)))))
(System/exit @failures#))]
(if-not (zero? @failures#)
(System/exit @failures#)))]
(try
(binding [eval/*pump-in* false]
(eval/eval-in-project project action))
Expand Down

0 comments on commit ae15ef0

Please sign in to comment.