< prev index next >

src/java.base/share/native/libjli/args.c

Print this page

        

*** 128,137 **** --- 128,139 ---- // We can not just update the idx here because if -jar @file // still need expansion of @file to get the argument for -jar } } else if (JLI_StrCmp(arg, "--disable-@files") == 0) { stopExpansion = JNI_TRUE; + } else if (JLI_StrCCmp(arg, "--module=") == 0) { + idx = argsCount; } } else { if (!expectingNoDashArg) { // this is main class, argsCount is index to next arg idx = argsCount;
*** 447,456 **** --- 449,459 ---- int isTerminalOpt(char *arg) { return JLI_StrCmp(arg, "-jar") == 0 || JLI_StrCmp(arg, "-m") == 0 || JLI_StrCmp(arg, "--module") == 0 || + JLI_StrCCmp(arg, "--module=") == 0 || JLI_StrCmp(arg, "--dry-run") == 0 || JLI_StrCmp(arg, "-h") == 0 || JLI_StrCmp(arg, "-?") == 0 || JLI_StrCmp(arg, "-help") == 0 || JLI_StrCmp(arg, "--help") == 0 ||
< prev index next >