Add usage info to zip-tool utility

MD-19678 #time 5m
This commit is contained in:
Robert Knight 2013-09-02 10:28:29 +01:00
parent 0472a4e991
commit ec3d09000b
1 changed files with 3 additions and 0 deletions

View File

@ -39,6 +39,9 @@ int main(int argc, char** argv)
{
if (argc < 3)
{
std::cerr << "Usage: " << argv[0] << " <archive name> <input dir>" << std::endl << std::endl
<< "Recursively scan <input dir> and add all files found to the ZIP archive <archive name>"
<< std::endl;
return 1;
}