From ff3b976df8ad64c0b3cf8c73b69e115508193a78 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Tue, 10 Aug 2021 10:52:19 -0700 Subject: [PATCH] Revert "Merge pull request #3935 from cdr/jsjoeio-rm-symlink" This reverts commit 50494472250cbfeb483aa2a4440efe408a30f190, reversing changes made to 741b834b640be0103cd86e76bac7ce4ea5bb2572. We still need the symlink for the standlone packages which means we need to redo how the symlink is removed, ensuring it's only removed in the npm package. --- ci/build/build-release.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci/build/build-release.sh b/ci/build/build-release.sh index 24269eb3..fe788d7c 100755 --- a/ci/build/build-release.sh +++ b/ci/build/build-release.sh @@ -98,6 +98,10 @@ EOF # yarn to fetch node_modules if necessary without build scripts running. # We cannot use --no-scripts because we still want dependent package scripts to run. jq 'del(.scripts)' < "$VSCODE_SRC_PATH/package.json" > "$VSCODE_OUT_PATH/package.json" + + pushd "$VSCODE_OUT_PATH" + symlink_asar + popd } main "$@"