2021-06-12 17:53:56 -04:00
|
|
|
diff --git a/src/vs/platform/update/electron-main/updateService.win32.ts b/src/vs/platform/update/electron-main/updateService.win32.ts
|
|
|
|
index 93424ca..133657e 100644
|
2021-04-01 10:43:49 -04:00
|
|
|
--- a/src/vs/platform/update/electron-main/updateService.win32.ts
|
|
|
|
+++ b/src/vs/platform/update/electron-main/updateService.win32.ts
|
2021-06-12 17:53:56 -04:00
|
|
|
@@ -53,7 +53,7 @@ export class Win32UpdateService extends AbstractUpdateService {
|
2021-04-01 10:43:49 -04:00
|
|
|
|
2019-12-08 18:19:44 -05:00
|
|
|
@memoize
|
|
|
|
get cachePath(): Promise<string> {
|
2021-04-01 10:43:49 -04:00
|
|
|
- const result = path.join(tmpdir(), `vscode-update-${this.productService.target}-${process.arch}`);
|
2021-07-16 19:37:07 -04:00
|
|
|
+ const result = path.join(tmpdir(), `${this.productService.applicationName}-update-${this.productService.target}-${process.arch}`);
|
2021-06-12 17:53:56 -04:00
|
|
|
return pfs.Promises.mkdir(result, { recursive: true }).then(() => result);
|
2021-04-01 10:43:49 -04:00
|
|
|
}
|
|
|
|
|