d8a91cf13e
* Fix patch for builds after 1.55 * Remove no longer needed centos7 patch * updating patches for 1.55 Co-authored-by: Atesca <2404098-atesca@users.noreply.gitlab.com>
11 lines
591 B
Diff
11 lines
591 B
Diff
--- a/src/vs/platform/update/electron-main/updateService.win32.ts
|
|
+++ b/src/vs/platform/update/electron-main/updateService.win32.ts
|
|
@@ -55,7 +55,7 @@ export class Win32UpdateService extends AbstractUpdateService {
|
|
|
|
@memoize
|
|
get cachePath(): Promise<string> {
|
|
- const result = path.join(tmpdir(), `vscode-update-${this.productService.target}-${process.arch}`);
|
|
+ const result = path.join(tmpdir(), `${this.productService.nameShort.toLowerCase()}-update-${this.productService.target}-${process.arch}`);
|
|
return fs.promises.mkdir(result, { recursive: true }).then(() => result);
|
|
}
|
|
|