Skip to content

Commit

Permalink
fix: correct faulty error message for ask smapi command
Browse files Browse the repository at this point in the history
  • Loading branch information
tydonelson committed Apr 13, 2023
1 parent cb24ad8 commit fb2d0d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/commands/smapi/smapi-commander.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export const makeSmapiCommander = () => {
);

program.on("command:*", () => {
console.error(`Command not recognized. Please run "${program.name}" to check the user instructions.`);
console.error(`Command not recognized. Please run "ask smapi" to check the user instructions.`);
process.exit(1);
});

Expand Down

0 comments on commit fb2d0d7

Please sign in to comment.