Permalink
Browse files

minced --version should exit 0

There is no error.
  • Loading branch information...
1 parent 402c8e0 commit 43fdafd6d842cf03723574e1580396ff3253ec3d @nsoranzo nsoranzo committed Jul 22, 2016
Showing with 1 addition and 1 deletion.
  1. +1 −1 minced.java
View
@@ -39,7 +39,7 @@ public static void main(String[] args)
if (args[0].equals("--version"))
{
printVersion();
- System.exit(1);
+ System.exit(0);
}
int i = 0;

0 comments on commit 43fdafd

Please sign in to comment.