Skip to content

Commit ac4381e

Browse files
committed
Remove packaged .gitignore files
Fixes coder#4964.
1 parent 3f608f8 commit ac4381e

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
@@ -66,7 +66,10 @@ EOF
6666

6767
bundle_vscode() {
6868
mkdir -p "$VSCODE_OUT_PATH"
69-
rsync ./lib/vscode-reh-web-*/ "$VSCODE_OUT_PATH"
69+
70+
# - Some extensions have a .gitignore which excludes their built source from
71+
# the npm package so exclude any .gitignore files.
72+
rsync -avh --exclude .gitignore ./lib/vscode-reh-web-*/ "$VSCODE_OUT_PATH"
7073

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

0 commit comments

Comments
 (0)