From 46646ad531439e3804c46267a8b5fe83f66e42e1 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 24 Oct 2025 11:27:37 -0600 Subject: [PATCH] scripts/build_container: Add missing quote Signed-off-by: Zack Cerza --- scripts/build_container | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_container b/scripts/build_container index 96373eab..4f8ff948 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 -- 2.39.5