From c164c017df945767e76670cc0fcece6a049b03c6 Mon Sep 17 00:00:00 2001 From: Doug Parker Date: Tue, 12 Nov 2019 13:43:26 -0800 Subject: [PATCH] fix(@angular/cli): Renames final message to "Migration completed". (#16016) We don't actually know for certain that the migration was successful, only that it finished. This updates the messaging to be more clear about this distinction. I also removed the check mark and green coloring which implied success. --- packages/angular/cli/commands/update-impl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/angular/cli/commands/update-impl.ts b/packages/angular/cli/commands/update-impl.ts index f01bc9ce1518..a6a615c9028f 100644 --- a/packages/angular/cli/commands/update-impl.ts +++ b/packages/angular/cli/commands/update-impl.ts @@ -186,7 +186,7 @@ export class UpdateCommand extends Command { return false; } - this.logger.info(colors.green(`${colors.symbols.check} Migration succeeded.`)); + this.logger.info(' Migration completed.'); // Commit migration if (commit) {