From 009c1c3a4be7896fb8278ce0a2a8037fa00a99ea Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 27 Dec 2018 11:48:34 +0100 Subject: [PATCH] fix #65726 --- build/gulpfile.vscode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js index 5ed1e395d49..e366afdfb70 100644 --- a/build/gulpfile.vscode.js +++ b/build/gulpfile.vscode.js @@ -100,7 +100,7 @@ gulp.task('optimize-vscode', ['clean-optimized-vscode', 'compile-build', 'compil gulp.task('optimize-index-js', ['optimize-vscode'], () => { - const fullpath = path.join(process.cwd(), 'out-vscode/vs/code/electron-browser/workbench/workbench.js'); + const fullpath = path.join(process.cwd(), 'out-vscode/bootstrap-window.js'); const contents = fs.readFileSync(fullpath).toString(); const newContents = contents.replace('[/*BUILD->INSERT_NODE_MODULES*/]', JSON.stringify(nodeModules)); fs.writeFileSync(fullpath, newContents);