Skip to content

Commit

Permalink
chore: fix typo in error code
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Jul 5, 2023
1 parent 4abc848 commit 4f2c7ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export async function runCommand<T extends ArgsDef = ArgsDef>(
if (!subCommands[subCommandName]) {
throw new CLIError(
`Unknown command \`${subCommandName}\``,
"E_UNKOWN_COMMAND",
"E_UNKNOWN_COMMAND",
);
}
const subCommand = await resolveValue(subCommands[subCommandName]);
Expand Down

0 comments on commit 4f2c7ca

Please sign in to comment.