Skip to content

Commit d374e03

Browse files
committed
Remove extra Node binary
This gets overidden in the standalone but it was getting uselessly included in the npm package.
1 parent f13ff1f commit d374e03

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ci/build/build-release.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,9 @@ bundle_vscode() {
8080

8181
# - Some extensions have a .gitignore which excludes their built source from
8282
# the npm package so exclude any .gitignore files.
83-
rsync -avh --exclude .gitignore ./lib/vscode-reh-web-*/ "$VSCODE_OUT_PATH"
83+
# - Exclude Node as we will add it ourselves for the standalone and will not
84+
# need it for the npm package.
85+
rsync -avh --exclude .gitignore --exclude /node ./lib/vscode-reh-web-*/ "$VSCODE_OUT_PATH"
8486

8587
# Add the commit, date, our name, links, and enable telemetry. This just makes
8688
# telemetry available; telemetry can still be disabled by flag or setting.

0 commit comments

Comments
 (0)