File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -83,8 +83,9 @@ bundle_vscode() {
83
83
rsync " $VSCODE_SRC_PATH /extensions/yarn.lock" " $VSCODE_OUT_PATH /extensions"
84
84
rsync " $VSCODE_SRC_PATH /extensions/postinstall.js" " $VSCODE_OUT_PATH /extensions"
85
85
86
- mkdir -p " $VSCODE_OUT_PATH /resources/linux "
86
+ mkdir -p " $VSCODE_OUT_PATH /resources/" {linux,web}
87
87
rsync " $VSCODE_SRC_PATH /resources/linux/code.png" " $VSCODE_OUT_PATH /resources/linux/code.png"
88
+ rsync " $VSCODE_SRC_PATH /resources/web/callback.html" " $VSCODE_OUT_PATH /resources/web/callback.html"
88
89
89
90
# Adds the commit and date to product.json
90
91
jq --slurp ' .[0] * .[1]' " $VSCODE_SRC_PATH /product.json" <(
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ RELEASE_PATH="${RELEASE_PATH-release}"
103
103
# Code itself but also extensions will look specifically in this directory for
104
104
# files (like the ripgrep binary or the oniguruma wasm).
105
105
symlink_asar () {
106
- if [ ! -e node_modules.asar ]; then
106
+ if [ ! -L node_modules.asar ]; then
107
107
if [ " ${WINDIR-} " ]; then
108
108
# mklink takes the link name first.
109
109
mklink /J node_modules.asar node_modules
You can’t perform that action at this time.
0 commit comments