File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -142,9 +142,9 @@ export class CommandsService implements ICommandsService {
142
142
" "
143
143
) + " "
144
144
: "" ;
145
- const commandHelp = `tns ${ command } --help` ;
145
+ const commandHelp = `ns ${ command } --help` ;
146
146
this . $logger . printMarkdown (
147
- `\`Run ' ${ commandHelp } ' for more information.\` `
147
+ `__Run \` ${ commandHelp } \` for more information.__ `
148
148
) ;
149
149
return ;
150
150
}
Original file line number Diff line number Diff line change @@ -354,7 +354,7 @@ export class Options {
354
354
opts [ this . getDashedOptionName ( key ) ] = value ;
355
355
} ) ;
356
356
357
- const parsed = yargs ( process . argv . slice ( 2 ) ) ;
357
+ const parsed = yargs ( process . argv . slice ( 2 ) ) . help ( false ) ;
358
358
this . initialArgv = parsed . argv ;
359
359
this . argv = parsed . options ( < any > opts ) . argv ;
360
360
You can’t perform that action at this time.
0 commit comments