File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -83,8 +83,9 @@ bundle_vscode() {
8383 rsync " $VSCODE_SRC_PATH /extensions/yarn.lock" " $VSCODE_OUT_PATH /extensions"
8484 rsync " $VSCODE_SRC_PATH /extensions/postinstall.js" " $VSCODE_OUT_PATH /extensions"
8585
86- mkdir -p " $VSCODE_OUT_PATH /resources/linux "
86+ mkdir -p " $VSCODE_OUT_PATH /resources/" {linux,web}
8787 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"
8889
8990 # Adds the commit and date to product.json
9091 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}"
103103# Code itself but also extensions will look specifically in this directory for
104104# files (like the ripgrep binary or the oniguruma wasm).
105105symlink_asar () {
106- if [ ! -e node_modules.asar ]; then
106+ if [ ! -L node_modules.asar ]; then
107107 if [ " ${WINDIR-} " ]; then
108108 # mklink takes the link name first.
109109 mklink /J node_modules.asar node_modules
You can’t perform that action at this time.
0 commit comments