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 b8affd6 commit 4b1ede2Copy full SHA for 4b1ede2
src/index.ts
@@ -37,6 +37,10 @@ commander.on("--help", () => {
37
});
38
39
async function main(action: string, option: Option) {
40
+ if (!action) {
41
+ commander.outputHelp();
42
+ return;
43
+ }
44
const cckey = await CCKey.create({});
45
try {
46
const accountType = getOpt(option, "account-type") as AccountType;
0 commit comments