From 1086ece85d53b2f3bb3f63066492b7bc4e6c56a2 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Wed, 12 Aug 2015 06:12:26 -0400 Subject: [PATCH] feature(bin) change params order --- HELP.md | 8 ++++---- json/bin.json | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/HELP.md b/HELP.md index 149ce019..60d9cf50 100644 --- a/HELP.md +++ b/HELP.md @@ -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 diff --git a/json/bin.json b/json/bin.json index b21032d8..070b3db3 100644 --- a/json/bin.json +++ b/json/bin.json @@ -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" }