Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Pasero <benjamin.pasero@microsoft.com>2021-06-08 08:39:43 +0300
committerBenjamin Pasero <benjamin.pasero@microsoft.com>2021-06-08 08:39:43 +0300
commit2cb7b42d98e44fade2067f06f61c3cf5d1defd58 (patch)
treec6ec6cdc6006dd2fd741f649eebb116ed8cba939 /src/bootstrap-window.js
parente4373f7591bbbc96ed10007bf0f22d2f6e2006e9 (diff)
code cache - cleanup in prep for chrome based code loading
Diffstat (limited to 'src/bootstrap-window.js')
-rw-r--r--src/bootstrap-window.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bootstrap-window.js b/src/bootstrap-window.js
index 270dda4cd68..60f07562223 100644
--- a/src/bootstrap-window.js
+++ b/src/bootstrap-window.js
@@ -148,9 +148,9 @@
}
// Cached data config
- if (configuration.nodeCachedDataDir) {
+ if (configuration.codeCachePath) {
loaderConfig.nodeCachedData = {
- path: configuration.nodeCachedDataDir,
+ path: configuration.codeCachePath,
seed: modulePaths.join('')
};
}