Skip to content

Commit c319eb1

Browse files
committed
Add missing package.json
This was caused by switching to Code's package step which does not include the package.json. Fixes coder#5019.
1 parent b9ee4bb commit c319eb1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ci/build/build-release.sh

+5
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,11 @@ EOF
145145

146146
rsync "$VSCODE_SRC_PATH/remote/yarn.lock" "$VSCODE_OUT_PATH/yarn.lock"
147147

148+
# Include global extension dependencies as well.
149+
rsync "$VSCODE_SRC_PATH/extensions/package.json" "$VSCODE_OUT_PATH/extensions/package.json"
150+
rsync "$VSCODE_SRC_PATH/extensions/yarn.lock" "$VSCODE_OUT_PATH/extensions/yarn.lock"
151+
rsync "$VSCODE_SRC_PATH/extensions/postinstall.js" "$VSCODE_OUT_PATH/extensions/postinstall.js"
152+
148153
pushd "$VSCODE_OUT_PATH"
149154
symlink_asar
150155
popd

0 commit comments

Comments
 (0)