mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-05 18:34:45 +00:00
Changed #2113 Commandline -importScript command aborts import on first error,
can be changed with `-onerror ignore` argument
This commit is contained in:
@@ -4234,7 +4234,7 @@ public class CommandLineArgumentParser {
|
||||
|
||||
@Override
|
||||
public void scriptImportError() {
|
||||
if (errorHandler != null && ((ConsoleAbortRetryIgnoreHandler) errorHandler).errorMode == AbortRetryIgnoreHandler.ABORT) {
|
||||
if (errorHandler == null || ((ConsoleAbortRetryIgnoreHandler) errorHandler).errorMode == AbortRetryIgnoreHandler.ABORT) {
|
||||
System.exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user