Skip to content

Commit

Permalink
Improve error message for unsupported profile
Browse files Browse the repository at this point in the history
  • Loading branch information
twiss committed Nov 18, 2024
1 parent 5d9f32b commit 4bcc87f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const format_date = (d) => {
const getProfileOptions = (subcommand, profileName = 'default') => {
const profile = PROFILES[subcommand]?.[profileName];
if (!profile) {
console.error('no supported profiles');
console.error('unsupported profile');
return process.exit(UNSUPPORTED_PROFILE);
}

Expand Down

0 comments on commit 4bcc87f

Please sign in to comment.