standalone: Fix --help

Fixes: bd97b6f9 ("Command-line: Give better error messages. From #1829.") Signed-off-by: 's avatarJordan Justen <jordan.l.justen@intel.com>
parent 07a55839
......@@ -654,6 +654,9 @@ void ProcessArguments(std::vector<std::unique_ptr<glslang::TWorkItem>>& workItem
break;
} else if (lowerword == "version") {
Options |= EOptionDumpVersions;
} else if (lowerword == "help") {
usage();
break;
} else {
Error("unrecognized command-line option", argv[0]);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment