Skip to content

Commit d6496c0

Browse files
committed
Fixup promote script
1 parent 15c9ca7 commit d6496c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/scripts/promote.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ if [[ $RELEASE_TYPE = "RELEASE" ]]; then
5151

5252
artifacts_published=false
5353
retry_counter=0
54-
while [ $artifacts_published == "false" ] && [ $retry_counter -lt WAIT_ATTEMPTS ]; do
54+
while [ $artifacts_published == "false" ] && [ $retry_counter -lt $WAIT_ATTEMPTS ]; do
5555
result=$( curl -s -f -u ${BINTRAY_USERNAME}:${BINTRAY_API_KEY} https://api.bintray.com/packages/"${BINTRAY_SUBJECT}"/"${BINTRAY_REPO}"/"${groupId}" )
5656
if [ $? -eq 0 ]; then
5757
versions=$( echo "$result" | jq -r '.versions' )

0 commit comments

Comments
 (0)