]> git.apps.os.sepia.ceph.com Git - ceph-build.git/commitdiff
ceph-dev-build: fix another error (stray '+' in build/build_rpm) 2302/head
authorDan Mick <dan.mick@redhat.com>
Sat, 7 Dec 2024 01:09:23 +0000 (17:09 -0800)
committerDan Mick <dan.mick@redhat.com>
Sat, 7 Dec 2024 01:09:23 +0000 (17:09 -0800)
Signed-off-by: Dan Mick <dan.mick@redhat.com>
ceph-dev-build/build/build_rpm

index 629d375b2a8dc9e7f303537547eb14e701bf243c..2667e93f78b0c4a04893ce7a0680326dae7c09e1 100644 (file)
@@ -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