Skip to content

Commit 98b2ea0

Browse files
committed
Add remoinder for regeneration of ;aunch.json after extension update
1 parent 649b680 commit 98b2ea0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/extensionVersionService.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export class ExtensionVersionService {
7777
return this.latestPublishedVersion.then(latestVersion => {
7878
let extensionVersion = utils.getInstalledExtensionVersion();
7979
let isLatest: boolean = extensionVersion.compareBySubminorTo(latestVersion) >= 0;
80-
let error = isLatest ? null : `A new version of the NativeScript extension is available. Open "Extensions" panel to update to v${latestVersion}.`;
80+
let error = isLatest ? null : `A new version of the NativeScript extension is available. Open "Extensions" panel to update to v${latestVersion}. Don't forget to regenerate your launch.json file after updating.`;
8181
return {result: isLatest, error: error};
8282
});
8383
}

0 commit comments

Comments
 (0)