From ed2a50d9a6bd99e43fba66f1769cb6d30ce170ac Mon Sep 17 00:00:00 2001 From: Benson Wong Date: Fri, 14 Feb 2025 15:27:56 -0800 Subject: [PATCH] fix bug in build-container.sh --- docker/build-container.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/build-container.sh b/docker/build-container.sh index 90b39a9..8f76923 100755 --- a/docker/build-container.sh +++ b/docker/build-container.sh @@ -5,7 +5,7 @@ cd $(dirname "$0") ARCH=$1 # List of allowed architectures -ALLOWED_ARCHS=("intel" "vulkan" "musa" "cuda", "cpu") +ALLOWED_ARCHS=("intel" "vulkan" "musa" "cuda" "cpu") # Check if ARCH is in the allowed list if [[ ! " ${ALLOWED_ARCHS[@]} " =~ " ${ARCH} " ]]; then