update-cache-path.patch 516 B

1234567891011
  1. --- vscode/src/vs/platform/update/electron-main/updateService.win32.ts 2021-02-05 11:59:17.564060663 -0600
  2. +++ src/src/vs/platform/update/electron-main/updateService.win32.ts 2021-02-05 11:59:39.780745778 -0600
  3. @@ -55,7 +55,7 @@
  4. @memoize
  5. get cachePath(): Promise<string> {
  6. - const result = path.join(tmpdir(), `vscode-update-${product.target}-${process.arch}`);
  7. + const result = path.join(tmpdir(), `vscodium-update-${product.target}-${process.arch}`);
  8. return pfs.mkdirp(result).then(() => result);
  9. }