vscodium/patches/update-cache-path.patch

12 lines
516 B
Diff
Raw Normal View History

2021-02-05 12:37:23 -05:00
--- vscode/src/vs/platform/update/electron-main/updateService.win32.ts 2021-02-05 11:59:17.564060663 -0600
+++ src/src/vs/platform/update/electron-main/updateService.win32.ts 2021-02-05 11:59:39.780745778 -0600
2019-12-08 18:19:44 -05:00
@@ -55,7 +55,7 @@
@memoize
get cachePath(): Promise<string> {
- const result = path.join(tmpdir(), `vscode-update-${product.target}-${process.arch}`);
+ const result = path.join(tmpdir(), `vscodium-update-${product.target}-${process.arch}`);
2021-02-05 12:37:23 -05:00
return pfs.mkdirp(result).then(() => result);
2019-12-08 18:19:44 -05:00
}