From 54240a7bd3854fc9e0c07b399683547500a1914e Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Tue, 16 Jan 2018 17:49:19 -0800 Subject: [PATCH] also add the workspace name, #41408 --- src/vs/workbench/api/node/extHostExtensionService.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/vs/workbench/api/node/extHostExtensionService.ts b/src/vs/workbench/api/node/extHostExtensionService.ts index d16146a5e0d..d39a58a432e 100644 --- a/src/vs/workbench/api/node/extHostExtensionService.ts +++ b/src/vs/workbench/api/node/extHostExtensionService.ts @@ -106,7 +106,10 @@ class ExtensionStoragePath { await mkdirp(storagePath); await writeFile( join(storagePath, 'meta.json'), - JSON.stringify({ id: this._workspace.id }) + JSON.stringify({ + id: this._workspace.id, + name: this._workspace.name + }, undefined, 2) ); return storagePath; -- GitLab