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

Commit

Permalink
Use non-zero exit code on error
Browse files Browse the repository at this point in the history
  • Loading branch information
pimotte committed Aug 10, 2014
1 parent 0657939 commit 2abf2fa
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(0);
System.exit(1);

return -1; // Never reached
}
Expand Down

0 comments on commit 2abf2fa

Please sign in to comment.