You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/services/NsCliService.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ export class CliVersionInfo {
56
56
publicgetErrorMessage(): string{
57
57
switch(this._state){
58
58
caseCliVersionState.NotExisting:
59
-
return`NativeScript CLI not found, please run 'npm install –g nativescript' to install it.`;
59
+
return`NativeScript CLI not found, please run 'npm -g install nativescript' to install it.`;
60
60
caseCliVersionState.OlderThanSupported:
61
61
return`The existing NativeScript extension is compatible with NativeScript CLI v${Version.stringify(ExtensionVersionInfo.getMinSupportedNativeScriptVersion())} or greater. The currently installed NativeScript CLI is v${Version.stringify(CliVersionInfo.getInstalledCliVersion())}. You can update the NativeScript CLI by executing 'npm install -g nativescript'.`;
0 commit comments