Skip to content

Commit fd7f1ec

Browse files
committed
Include missing resources in release
This includes a favicon, for example. I opted to include the entire directory to make sure we do not miss anything. Some of the other stuff looks potentially useful (like completions).
1 parent 467eaef commit fd7f1ec

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ci/build/build-release.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,8 @@ bundle_vscode() {
8080
rsync "$VSCODE_SRC_PATH/extensions/yarn.lock" "$VSCODE_OUT_PATH/extensions"
8181
rsync "$VSCODE_SRC_PATH/extensions/postinstall.js" "$VSCODE_OUT_PATH/extensions"
8282

83-
mkdir -p "$VSCODE_OUT_PATH/resources/"{linux,web}
84-
rsync "$VSCODE_SRC_PATH/resources/linux/" "$VSCODE_OUT_PATH/resources/linux/"
85-
rsync "$VSCODE_SRC_PATH/resources/web/" "$VSCODE_OUT_PATH/resources/web/"
83+
mkdir -p "$VSCODE_OUT_PATH/resources/"
84+
rsync "$VSCODE_SRC_PATH/resources/" "$VSCODE_OUT_PATH/resources/"
8685

8786
# Add the commit and date and enable telemetry. This just makes telemetry
8887
# available; telemetry can still be disabled by flag or setting.

0 commit comments

Comments
 (0)