Skip to content

Commit 7e794bd

Browse files
committed
Fix favicon not being included in final build
1 parent dc333d4 commit 7e794bd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/vscode.patch

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ index 0dd2e5abf1..fc6875f3c2 100644
1111
// All Build
1212
const compileBuildTask = task.define('compile-build', task.parallel(compileClientBuildTask, compileExtensionsBuildTask));
1313
diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js
14-
index 84a6be26e8..e50618be3a 100644
14+
index 84a6be26e8..d4c3ebc7bd 100644
1515
--- a/build/gulpfile.vscode.js
1616
+++ b/build/gulpfile.vscode.js
1717
@@ -34,7 +34,8 @@ const deps = require('./dependencies');
@@ -54,8 +54,9 @@ index 84a6be26e8..e50618be3a 100644
5454
'out-build/bootstrap-amd.js',
5555
'out-build/bootstrap-window.js',
5656
'out-build/paths.js',
57-
'out-build/vs/**/*.{svg,png,cur,html}',
57+
- 'out-build/vs/**/*.{svg,png,cur,html}',
5858
- '!out-build/vs/code/browser/**/*.html',
59+
+ 'out-build/vs/**/*.{svg,png,cur,html,ico}',
5960
+ // '!out-build/vs/code/browser/**/*.html',
6061
'out-build/vs/base/common/performance.js',
6162
'out-build/vs/base/node/languagePacks.js',

0 commit comments

Comments
 (0)