cmcmd: Fix sort order in help output

sort "sleep" before "tar", not after
This commit is contained in:
Tobias Hunger 2016-09-13 10:59:19 +02:00
parent 03bae46865
commit e952f1bdc7
1 changed files with 1 additions and 1 deletions

View File

@ -91,9 +91,9 @@ void CMakeCommandUsage(const char* program)
<< " remove_directory dir - remove a directory and its contents\n"
<< " rename oldname newname - rename a file or directory "
"(on one volume)\n"
<< " sleep <number>... - sleep for given number of seconds\n"
<< " tar [cxt][vf][zjJ] file.tar [file/dir1 file/dir2 ...]\n"
<< " - create or extract a tar or zip archive\n"
<< " sleep <number>... - sleep for given number of seconds\n"
<< " time command [args...] - run command and return elapsed time\n"
<< " touch file - touch a file.\n"
<< " touch_nocreate file - touch a file but do not create it.\n"