We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 864fe94 commit 926377bCopy full SHA for 926377b
packages/angular/cli/commands/update-impl.ts
@@ -43,7 +43,7 @@ export class UpdateCommand extends SchematicCommand<UpdateCommandSchema> {
43
// Check if the current installed CLI version is older than the latest version.
44
if (await this.checkCLILatestVersion(options.verbose, options.next)) {
45
this.logger.warn(
46
- 'The installed Angular CLI version is older than the latest published version.\n' +
+ `The installed Angular CLI version is older than the latest ${options.next ? 'pre-release' : 'stable'} version.\n` +
47
'Installing a temporary version to perform the update.',
48
);
49
0 commit comments