We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b1ede2 commit f6cf166Copy full SHA for f6cf166
src/index.ts
@@ -39,6 +39,7 @@ commander.on("--help", () => {
39
async function main(action: string, option: Option) {
40
if (!action) {
41
commander.outputHelp();
42
+ process.exit(1);
43
return;
44
}
45
const cckey = await CCKey.create({});
@@ -105,6 +106,7 @@ async function main(action: string, option: Option) {
105
106
107
} catch (err) {
108
console.log(err.toString());
109
110
111
112
0 commit comments