diff --git a/patches/update-cache-path.patch b/patches/update-cache-path.patch index 2000831..15673db 100644 --- a/patches/update-cache-path.patch +++ b/patches/update-cache-path.patch @@ -7,7 +7,7 @@ index 93424ca..133657e 100644 @memoize get cachePath(): Promise { - 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}`); ++ const result = path.join(tmpdir(), `${this.productService.applicationName}-update-${this.productService.target}-${process.arch}`); return pfs.Promises.mkdir(result, { recursive: true }).then(() => result); }