From e051f3ec7bce967a9876d9a113f394d782826c2c Mon Sep 17 00:00:00 2001 From: Ryan Shaffer <3620100+rmshaffer@users.noreply.github.com> Date: Mon, 2 Dec 2024 15:18:42 -0500 Subject: [PATCH] fix: Unzip command in container_build_and_push.sh --- examples/nvidia_cuda_q/container/container_build_and_push.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/nvidia_cuda_q/container/container_build_and_push.sh b/examples/nvidia_cuda_q/container/container_build_and_push.sh index 1f1560c97..02e3d29bc 100755 --- a/examples/nvidia_cuda_q/container/container_build_and_push.sh +++ b/examples/nvidia_cuda_q/container/container_build_and_push.sh @@ -52,7 +52,7 @@ script_dir=$(dirname "$0") # download cudaq wheel files wget -O container/cudaq_wheel.zip https://github.com/bettinaheim/cuda-quantum/releases/download/11272024/wheelhouse.zip -unzip -f container/cudaq_wheel.zip -d container/cudaq_wheel +unzip container/cudaq_wheel.zip -d container/cudaq_wheel # build docker image docker build --build-arg SCRIPT_PATH="$script_dir" \