From: Zack Cerza Date: Fri, 24 Oct 2025 17:27:37 +0000 (-0600) Subject: scripts/build_container: Add missing quote X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F2478%2Fhead;p=ceph-build.git scripts/build_container: Add missing quote Signed-off-by: Zack Cerza --- diff --git a/scripts/build_container b/scripts/build_container index 96373eabc..4f8ff948f 100755 --- a/scripts/build_container +++ b/scripts/build_container @@ -41,7 +41,7 @@ if [[ $CI_CONTAINER == "true" && $DISTRO == "centos" && "$RELEASE" =~ 8|9 ]] ; t case "${from_image_spec}" in "centos:stream9") FROM_IMAGE=quay.io/centos/centos:stream9 ;; "rocky:10") FROM_IMAGE=docker.io/rockylinux/rockylinux:10 ;; - *) echo "Don't know requested FROM image ${from_image_spec}; exit 1 ;; + *) echo "Don't know requested FROM image ${from_image_spec}"; exit 1 ;; esac FROM_IMAGE=${FROM_IMAGE} CEPH_SHA1=${SHA1} ./build.sh fi