Skip to content

Commit

Permalink
also add the workspace name, #41408
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Jan 17, 2018
1 parent a1b6fed commit 54240a7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/vs/workbench/api/node/extHostExtensionService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 54240a7

Please sign in to comment.