feature(bin) change params order

This commit is contained in:
coderaiser 2015-08-12 06:12:26 -04:00
parent 34310684f2
commit 1086ece85d
2 changed files with 9 additions and 9 deletions

View file

@ -69,12 +69,12 @@ Cloud Commander supports command line parameters:
| `--root` | set root directory
| `--prefix` | set url prefix
| `--port` | set port number
| `--no-auth` | disable authorization
| `--no-server` | do not start server
| `--no-online` | load scripts from local server
| `--minify` | enable minification
| `--no-minify` | disable minification
| `--progress` | show progress of file operations
| `--no-server` | do not start server
| `--no-auth` | disable authorization
| `--no-online` | load scripts from local server
| `--no-minify` | disable minification
| `--no-progress` | do not show progress of file operations
If no parameters given Cloud Commander reads information from `~/.cloudcmd.json` and use

View file

@ -11,11 +11,11 @@
"--root ": "set root directory",
"--prefix ": "set url prefix",
"--port ": "set port number",
"--no-auth ": "disable authorization",
"--no-server ": "do not start server",
"--no-online ": "load scripts from local server",
"--minify ": "enable minification",
"--no-minify ": "disable minification",
"--progress ": "show progress of file operations",
"--no-progress ": "not show progress of file operations"
"--no-server ": "do not start server",
"--no-auth ": "disable authorization",
"--no-online ": "load scripts from local server",
"--no-minify ": "disable minification",
"--no-progress ": "do not show progress of file operations"
}