show help if protoc is called without any arguments, pre-empts -h and --help to show a useful message instead of just 'Missing input file.'
This commit is contained in:
parent
8546620610
commit
3b227611d5
1 changed files with 6 additions and 0 deletions
|
@ -1012,6 +1012,12 @@ CommandLineInterface::ParseArguments(int argc, const char* const argv[]) {
|
|||
arguments.push_back(argv[i]);
|
||||
}
|
||||
|
||||
// if no arguments are given, show help
|
||||
if(arguments.empty()) {
|
||||
PrintHelpText();
|
||||
return PARSE_ARGUMENT_DONE_AND_EXIT; // Exit without running compiler.
|
||||
}
|
||||
|
||||
// Iterate through all arguments and parse them.
|
||||
for (int i = 0; i < arguments.size(); ++i) {
|
||||
string name, value;
|
||||
|
|
Loading…
Add table
Reference in a new issue