change sleep 5s to sleep 5 to support MacOS runners

This commit is contained in:
Conner Delahanty
2023-07-10 09:03:50 +02:00
committed by Jacek
parent b438cfa1bd
commit c32e6c5709
+1 -1
View File
@@ -39,7 +39,7 @@ status="$(jq -r '.task.status' <<< "$task")"
until [[ ${status} != "PENDING" && ${status} != "IN_PROGRESS" ]]; do
printf '.'
sleep 5s
sleep 5
task="$(curl --location --location-trusted --max-redirs 10 --silent --fail --show-error --user "${SONAR_TOKEN}": "${ceTaskUrl}")"
status="$(jq -r '.task.status' <<< "$task")"
done