* use positive code to avoid issues with launch4j launcher

This commit is contained in:
Reinhard Pointner 2014-11-15 20:18:08 +00:00
parent 54da732674
commit f1685b50e3
1 changed files with 2 additions and 2 deletions

View File

@ -125,9 +125,9 @@ public class ArgumentProcessor {
}
}
// script failed
// script failed with exception -> exit with non-zero exit code (and use positive code to avoid issues with launch4j launcher)
CLILogger.finest("Failure (°_°)");
return -1;
return 1;
}
public static class DefaultScriptProvider implements ScriptProvider {