We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
./charmrun ++help
1 parent 040b26a commit 23c9f5cCopy full SHA for 23c9f5c
src/util/charmrun-src/charmrun.C
@@ -972,8 +972,11 @@ static void arg_init(int argc, const char **argv)
972
(argv) + 1; /*Skip over charmrun (0) here and program name (1) later*/
973
arg_argc = pparam_countargs(arg_argv);
974
if (arg_argc < 1) {
975
- fprintf(stderr, "ERROR> You must specify a node-program.\n");
976
- pparam_printdocs();
+ if (!arg_help)
+ {
977
+ fprintf(stderr, "ERROR> You must specify a node-program.\n");
978
+ pparam_printdocs();
979
+ }
980
exit(1);
981
}
982
0 commit comments