From 024d76ea191848e8faf1f4f2ac2ad8b9b6411a41 Mon Sep 17 00:00:00 2001 From: Frederik Hahne Date: Tue, 16 Mar 2021 06:43:07 +0100 Subject: [PATCH] print sponsor message instead of twice the success message closes #14329 --- cli/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/utils.js b/cli/utils.js index 616a2107fd92..ae2848935986 100644 --- a/cli/utils.js +++ b/cli/utils.js @@ -144,7 +144,7 @@ const doneFactory = (successMsg, sponsorMsg) => { const printSuccess = () => { if (process.exitCode === undefined || process.exitCode === 0) { logger.log(chalk.green.bold(SUCCESS_MESSAGE)); - logger.log(chalk.cyan.bold(SUCCESS_MESSAGE)); + logger.log(chalk.cyan.bold(SPONSOR_MESSAGE)); } else { logger.error(`ERROR! JHipster finished with code ${process.exitCode}`); }