From: Dan Mick Date: Sat, 7 Dec 2024 01:09:23 +0000 (-0800) Subject: ceph-dev-build: fix another error (stray '+' in build/build_rpm) X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=b4b3f0b22eaeba9b2b916cd6e9559f919851dc7e;p=ceph-build.git ceph-dev-build: fix another error (stray '+' in build/build_rpm) Signed-off-by: Dan Mick --- diff --git a/ceph-dev-build/build/build_rpm b/ceph-dev-build/build/build_rpm index 629d375b..2667e93f 100644 --- a/ceph-dev-build/build/build_rpm +++ b/ceph-dev-build/build/build_rpm @@ -89,7 +89,7 @@ if [[ "$CI_CONTAINER" == true && $DISTRO == "centos" && "$RELEASE" =~ 8|9 ]] ; t ready=false while ((loop < 15)); do curl -s "https://shaman.ceph.com/api/search/?project=ceph&distros=centos/${RELEASE}/${ARCH}&sha1=${SHA1}&ref=${BRANCH}&flavor=${FLAVOR}" > shaman.status -+ if [[ ($(jq -r '.[0].extra.build_url' < shaman.status) == ${BUILD_URL}) && ($(jq -r '.[0].status' < shaman.status) == 'ready') ]] ; then ready=true; break; fi + if [[ ($(jq -r '.[0].extra.build_url' < shaman.status) == ${BUILD_URL}) && ($(jq -r '.[0].status' < shaman.status) == 'ready') ]] ; then ready=true; break; fi ((loop = loop + 1)) sleep 60 done