Skip to content

Commit 57f8dc2

Browse files
alirezamirianhansl
authored andcommitted
fix(@angular/cli): suggest windows-compatible typescript install command
Specifying version range in single quote doesn't work in windows CMD and it returns: > The system cannot find the file specified.
1 parent 42359a9 commit 57f8dc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/angular/cli/upgrade/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export class Version {
182182
183183
Please run the following command to install a compatible version of TypeScript.
184184
185-
npm install typescript@'${currentCombo.typescript}'
185+
npm install typescript@"${currentCombo.typescript}"
186186
187187
To disable this warning run "ng config cli.warnings.typescriptMismatch false".
188188
` + '\n')));

0 commit comments

Comments
 (0)