Browse Source

CI: fix syntax errors in 'scripts/build/ci/cirrus-ci_dispatcher.sh'

emacs-27
Leonid Plyushch 6 years ago
parent
commit
2ba849491a
No known key found for this signature in database GPG Key ID: 45F2964132545795
  1. 4
      scripts/build/ci/cirrus-ci_dispatcher.sh

4
scripts/build/ci/cirrus-ci_dispatcher.sh

@ -129,10 +129,10 @@ else
fi
# Workaround for concurrent uploads.
if [ "$UPLOAD_DELAY" != "0" ];
if [ "$UPLOAD_DELAY" != "0" ]; then
echo "[!] Using workaround for Bintray issue with concurrent uploads."
echo "[!] Delaying upload by ${UPLOAD_DELAY} seconds."
sleep $UPLOAD_DELAY
sleep "$UPLOAD_DELAY"
fi
for attempt in 1 2 3; do

Loading…
Cancel
Save