]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-build.git/commitdiff
scripts/build_container: Add missing quote 2478/head
authorZack Cerza <zack@cerza.org>
Fri, 24 Oct 2025 17:27:37 +0000 (11:27 -0600)
committerZack Cerza <zack@cerza.org>
Fri, 24 Oct 2025 17:27:37 +0000 (11:27 -0600)
Signed-off-by: Zack Cerza <zack@cerza.org>
scripts/build_container

index 96373eabc902e13114a93f4a0cbde225d4a0582a..4f8ff948fc6aa5d45f9de8ee2d3dd5e0ffd6d06f 100755 (executable)
@@ -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