Skip to content

Commit 39facee

Browse files
authored
Merge pull request #2539 from cdr/callback-html
2 parents 07bc3d9 + 05530db commit 39facee

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ci/build/build-release.sh

+2-1
Original file line numberDiff line numberDiff 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" <(

ci/lib.sh

+1-1
Original file line numberDiff line numberDiff 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).
105105
symlink_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

0 commit comments

Comments
 (0)