Skip to content

Commit 4f2c7ca

Browse files
committed
chore: fix typo in error code
1 parent 4abc848 commit 4f2c7ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export async function runCommand<T extends ArgsDef = ArgsDef>(
4646
if (!subCommands[subCommandName]) {
4747
throw new CLIError(
4848
`Unknown command \`${subCommandName}\``,
49-
"E_UNKOWN_COMMAND",
49+
"E_UNKNOWN_COMMAND",
5050
);
5151
}
5252
const subCommand = await resolveValue(subCommands[subCommandName]);

0 commit comments

Comments
 (0)