You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Apply file types on all configurations in concatenating origin
instead of changing the default only.
* Set correct app name in CLI help texts.
* Lint fixes
cli.addOption(newOption(RESTARTING_FLAG,'Hidden option to manage CLI usage').hideHelp());
@@ -90,7 +90,7 @@ function setup() {
90
90
});
91
91
files.option(
92
92
'-o, --open <filename | glob pattern...>',
93
-
'Opens file. Ex: cm -o /path/file_name_a. In case of multiple files, concat operation will be done. Ex: cm -o file_a -o file_b; cm -o "**/*.logs"; cm -o "**/*.{logs,txt}"',
93
+
'Opens file. Ex: chipmunk -o /path/file_name_a. In case of multiple files, concat operation will be done. Ex: chipmunk -o file_a -o file_b; chipmunk -o "**/*.logs"; chipmunk -o "**/*.{logs,txt}"',
94
94
parser(CLI_HANDLERS['open'],undefined),
95
95
);
96
96
conststreams=cli
@@ -99,25 +99,25 @@ function setup() {
99
99
streams.addOption(
100
100
newOption(
101
101
'--tcp "<addr:port>"',
102
-
'Creates TCP connection with given address. Ex: cm --tcp "0.0.0.0:8888"',
102
+
'Creates TCP connection with given address. Ex: chipmunk --tcp "0.0.0.0:8888"',
0 commit comments