We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef98ccb commit 6a66db9Copy full SHA for 6a66db9
buildspec/release/70check-marketplace.yml
@@ -17,6 +17,7 @@ phases:
17
build:
18
commands:
19
- VERSION=$(node -e "console.log(require('./packages/${TARGET_EXTENSION}/package.json').version);")
20
+ # Get the extension identifier from target extension
21
- |
22
if [ "${TARGET_EXTENSION}" = "amazonq" ]; then
23
extension_name="amazonwebservices.amazon-q-vscode"
@@ -26,6 +27,7 @@ phases:
26
27
echo "Unknown TARGET_EXTENSION: ${TARGET_EXTENSION}"
28
exit 1
29
fi
30
+ # Keep re-installing the extension until the newer version is successfully installed
31
32
while true; do
33
code --uninstall-extension ${extension_name}
0 commit comments