Skip to content

Commit f13ff1f

Browse files
committed
Remove packaged .gitignore files
Fixes #4964.
1 parent 7a1331f commit f13ff1f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ci/build/build-release.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,10 @@ EOF
7777

7878
bundle_vscode() {
7979
mkdir -p "$VSCODE_OUT_PATH"
80-
rsync ./lib/vscode-reh-web-*/ "$VSCODE_OUT_PATH"
80+
81+
# - Some extensions have a .gitignore which excludes their built source from
82+
# the npm package so exclude any .gitignore files.
83+
rsync -avh --exclude .gitignore ./lib/vscode-reh-web-*/ "$VSCODE_OUT_PATH"
8184

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

0 commit comments

Comments
 (0)