Skip to content
This repository has been archived by the owner on Jul 26, 2022. It is now read-only.

Commit

Permalink
Revert "Use non-zero exit code on error"
Browse files Browse the repository at this point in the history
This reverts commit 2abf2fa.

Non-zero exit codes break gradle
  • Loading branch information
pimotte committed Aug 10, 2014
1 parent 2abf2fa commit 8275757
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -506,7 +506,7 @@ private int showErrorAndExit(String errorMessage) {
out.println();

out.close();
System.exit(1);
System.exit(0);

return -1; // Never reached
}
Expand Down

0 comments on commit 8275757

Please sign in to comment.