From b4b3f0b22eaeba9b2b916cd6e9559f919851dc7e Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Fri, 6 Dec 2024 17:09:23 -0800 Subject: [PATCH] ceph-dev-build: fix another error (stray '+' in build/build_rpm) Signed-off-by: Dan Mick --- ceph-dev-build/build/build_rpm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceph-dev-build/build/build_rpm b/ceph-dev-build/build/build_rpm index 629d375b2..2667e93f7 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 -- 2.47.3