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/nativescript/nativescript.ts
+1-1
Original file line number
Diff line number
Diff line change
@@ -452,7 +452,7 @@ export class CliVersionInfo {
452
452
publicgetErrorMessage(): string{
453
453
switch(this._state){
454
454
caseCliState.NotExisting:
455
-
return`NativeScript CLI not found, please run 'npm install –g nativescript@${Version.stringify(ExtensionVersionInfo.getMinSupportedNativeScriptVersion())}' to install it.`;
455
+
return`NativeScript CLI not found, please run 'npm install –g nativescript' to install it.`;
456
456
caseCliState.OlderThanSupported:
457
457
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