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 692774c commit 3274997Copy full SHA for 3274997
buildspec/release/70checkmarketplace.yml
@@ -37,6 +37,7 @@ phases:
37
# keep installing the desired extension version until successful. Otherwise fail on codebuild timeout (1 hour).
38
- |
39
while true; do
40
+ code --uninstall-extension "${extension_name}" --no-sandbox --user-data-dir /tmp/vscode
41
code --install-extension "${extension_name}@${VERSION}" --no-sandbox --user-data-dir /tmp/vscode
42
cur_version=$(code --list-extensions --show-versions --no-sandbox --user-data-dir /tmp/vscode | grep ${extension_name} | cut -d'@' -f2)
43
if [ "${cur_version}" = "${VERSION}" ]; then
0 commit comments