From 76a545dd08127d62cb5c9ae4a1644bdf7ee608ca Mon Sep 17 00:00:00 2001 From: Jasper Zonneveld Date: Thu, 24 Mar 2022 14:35:36 +0100 Subject: [PATCH] Fix credentials import success message --- packages/cli/commands/import/credentials.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/commands/import/credentials.ts b/packages/cli/commands/import/credentials.ts index a4d799c604070..be36b53771be9 100644 --- a/packages/cli/commands/import/credentials.ts +++ b/packages/cli/commands/import/credentials.ts @@ -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() {