From a638187b18e80a3e92a9f774e5de03d0188d3198 Mon Sep 17 00:00:00 2001 From: Luis Urrutia Date: Mon, 25 Feb 2019 17:07:12 -0300 Subject: [PATCH] fix(extensions): change portable extensions dir --- src/service/pluginService.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/service/pluginService.ts b/src/service/pluginService.ts index df8b819c..a83d6a2c 100644 --- a/src/service/pluginService.ts +++ b/src/service/pluginService.ts @@ -9,8 +9,8 @@ import * as util from "../util"; const apiPath = "https://marketplace.visualstudio.com/_apis/public/gallery/extensionquery"; -const extensionDir: string = ".vscode"; -const extensionDirPortable: string = "/data/extensions/"; +const extensionDir: string = ".vscode/"; +const extensionDirPortable: string = "/extensions/"; export class ExtensionInformation { public static fromJSON(text: string) {