From 99f27fe9ed3498ad2586b379a27b38a3039f4573 Mon Sep 17 00:00:00 2001 From: Mike Lewis Date: Sun, 7 Mar 2021 23:03:39 -0500 Subject: [PATCH] Reduce context for `patches/update-cache-path.patch` 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. --- patches/update-cache-path.patch | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/patches/update-cache-path.patch b/patches/update-cache-path.patch index da006cc..096a38f 100644 --- a/patches/update-cache-path.patch +++ b/patches/update-cache-path.patch @@ -1,11 +1,7 @@ --- 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 -@@ -55,7 +55,7 @@ - +@@ -56,3 +56,3 @@ @memoize get cachePath(): Promise { - const result = path.join(tmpdir(), `vscode-update-${product.target}-${process.arch}`); + const result = path.join(tmpdir(), `vscodium-update-${product.target}-${process.arch}`); - return pfs.mkdirp(result).then(() => result); - } -