Skip to content

Commit 964abe3

Browse files
Splaktarmgechev
authored andcommitted
refactor(@schematics/update): missing space in usageMessage output (#15786)
Fixes #15784
1 parent 3a44611 commit 964abe3

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)