Skip to content

Commit c164c01

Browse files
committed
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.
1 parent 7e7248d commit c164c01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/angular/cli/commands/update-impl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ export class UpdateCommand extends Command<UpdateCommandSchema> {
186186
return false;
187187
}
188188

189-
this.logger.info(colors.green(`${colors.symbols.check} Migration succeeded.`));
189+
this.logger.info(' Migration completed.');
190190

191191
// Commit migration
192192
if (commit) {

0 commit comments

Comments
 (0)