Skip to content

Commit

Permalink
⚡ Fix credentials import success message (#3038)
Browse files Browse the repository at this point in the history
  • Loading branch information
JaZo authored Mar 25, 2022
1 parent b90bf45 commit e38b5ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/commands/import/credentials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export class ImportCredentialsCommand extends Command {
}

private reportSuccess(total: number) {
console.info(`Successfully imported ${total} ${total === 1 ? 'workflow.' : 'workflows.'}`);
console.info(`Successfully imported ${total} ${total === 1 ? 'credential.' : 'credentials.'}`);
}

private async initOwnerCredentialRole() {
Expand Down

0 comments on commit e38b5ca

Please sign in to comment.