Unverified Commit 9a80305c by John Kessenich Committed by GitHub

Merge pull request #2068 from jljusten/standalone-fix-long-help

standalone: Fix --help
parents 07a55839 6ad120ea
...@@ -654,6 +654,9 @@ void ProcessArguments(std::vector<std::unique_ptr<glslang::TWorkItem>>& workItem ...@@ -654,6 +654,9 @@ void ProcessArguments(std::vector<std::unique_ptr<glslang::TWorkItem>>& workItem
break; break;
} else if (lowerword == "version") { } else if (lowerword == "version") {
Options |= EOptionDumpVersions; Options |= EOptionDumpVersions;
} else if (lowerword == "help") {
usage();
break;
} else { } else {
Error("unrecognized command-line option", argv[0]); 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