Skip to content

Commit aef2984

Browse files
committed
refactor(@schematics/update): missing space in usageMessage output
Fixes angular#15784
1 parent 0d70565 commit aef2984

File tree

1 file changed

+1
-1
lines changed
  • packages/schematics/update/update

1 file changed

+1
-1
lines changed

packages/schematics/update/update/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ function _usageMessage(
489489
command += ' --next';
490490
}
491491

492-
return [name, `${info.installed.version} -> ${version}`, command];
492+
return [name, `${info.installed.version} -> ${version} `, command];
493493
})
494494
.filter(x => x !== null)
495495
.sort((a, b) => a && b ? a[0].localeCompare(b[0]) : 0);

0 commit comments

Comments
 (0)