cmCTestUploadCommand::CheckArgumentKeyword should return false if not FILES

This commit is contained in:
Zach Mullen 2011-03-29 09:24:21 -04:00 committed by David Cole
parent 6b6f309c5f
commit 3e32db7921
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ bool cmCTestUploadCommand::CheckArgumentKeyword(std::string const& arg)
this->ArgumentDoing = ArgumentDoingFiles;
return true;
}
return this->CheckArgumentValue(arg);
return false;
}