1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* 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

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 {