99f27fe9ed
Upstream changed the next line, causing build breakage. Reducing the context resolves the issue and should help prevent future issues if/when that function changes again.
7 lines
459 B
Diff
7 lines
459 B
Diff
--- 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
|
|
@@ -56,3 +56,3 @@
|
|
@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}`);
|