mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
Use console.error instead of console.log in cli/index.ts
For consistency #5911
This commit is contained in:
parent
7f01b06456
commit
676b879009
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ args.command(
|
||||||
commandPromise = api
|
commandPromise = api
|
||||||
.uninstall(pluginName)
|
.uninstall(pluginName)
|
||||||
.then(() => console.log(chalk.green(`${pluginName} uninstalled successfully!`)))
|
.then(() => console.log(chalk.green(`${pluginName} uninstalled successfully!`)))
|
||||||
.catch((err) => console.log(chalk.red(err)));
|
.catch((err) => console.error(chalk.red(err)));
|
||||||
},
|
},
|
||||||
['u', 'rm', 'remove']
|
['u', 'rm', 'remove']
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue