diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-05-24 08:53:55 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-24 08:53:55 +0000 |
| commit | ca19c63f2065f9e2d5d6178f006d909d64b9c219 (patch) | |
| tree | 25b8e1f83732116dbc42e8626a3351b287729e72 /editors/code/src | |
| parent | 495c9586ec51e0cf9b06397d99ec4f65c55e7a28 (diff) | |
| parent | df146341c506a0ac5cf6ac4dab012f13c479ae97 (diff) | |
| download | rust-ca19c63f2065f9e2d5d6178f006d909d64b9c219.tar.gz rust-ca19c63f2065f9e2d5d6178f006d909d64b9c219.zip | |
Merge #8959
8959: fix: can download server binary on windows again r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
Diffstat (limited to 'editors/code/src')
| -rw-r--r-- | editors/code/src/config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts index fbb7a556a86..d3d6e631a02 100644 --- a/editors/code/src/config.ts +++ b/editors/code/src/config.ts @@ -34,7 +34,7 @@ export class Config { readonly globalStoragePath: string; constructor(ctx: vscode.ExtensionContext) { - this.globalStoragePath = ctx.globalStorageUri.path; + this.globalStoragePath = ctx.globalStorageUri.fsPath; vscode.workspace.onDidChangeConfiguration(this.onDidChangeConfiguration, this, ctx.subscriptions); this.refreshLogging(); } |
