We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac6d6b7 commit dc897c6Copy full SHA for dc897c6
src/vs/platform/update/electron-main/updateService.win32.ts
@@ -53,7 +53,7 @@ export class Win32UpdateService extends AbstractUpdateService {
53
54
@memoize
55
get cachePath(): Promise<string> {
56
- const result = path.join(tmpdir(), `vscode-update-${this.productService.target}-${process.arch}`);
+ const result = path.join(tmpdir(), `vscode-${this.productService.quality}-${this.productService.target}-${process.arch}`);
57
return pfs.Promises.mkdir(result, { recursive: true }).then(() => result);
58
}
59
0 commit comments