Skip to content

Commit

Permalink
Include midstream changes in upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
SDawley committed Jul 21, 2023
1 parent 489bfee commit d3f7c34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/dockerfiles/import-vsix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ getMetadata(){
if [[ $(echo "${vsixMetadata}" | jq -r ".error") != null ]]; then
echo "Attempt $j/5: Error while getting metadata for ${vsixName} version ${key}"

if [[ $j = 5 ]]; then
echo "[ERROR] Maximum attempts reached."
if [[ $j -eq 5 ]]; then
echo "[ERROR] Maximum of 5 attempts reached - must exit!"
exit 1
fi
continue
Expand Down

0 comments on commit d3f7c34

Please sign in to comment.