From 3d692a20cc777478b7e078be3e9f99ae2e52d199 Mon Sep 17 00:00:00 2001 From: Dave Lane <42013603+ReenigneArcher@users.noreply.github.com> Date: Fri, 7 Aug 2026 15:23:54 -0400 Subject: [PATCH] chore(docker): fix hadolint SC3014 (#5482) --- docker/clion-toolchain.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/clion-toolchain.dockerfile b/docker/clion-toolchain.dockerfile index c2a468736..b8a06cfe6 100644 --- a/docker/clion-toolchain.dockerfile +++ b/docker/clion-toolchain.dockerfile @@ -73,7 +73,7 @@ RUN <<_INSTALL_CUDA set -e cuda_prefix="https://developer.download.nvidia.com/compute/cuda/" cuda_suffix="" -if [[ "${TARGETPLATFORM}" == 'linux/arm64' ]]; then +if [ "${TARGETPLATFORM}" = 'linux/arm64' ]; then cuda_suffix="_sbsa" fi url="${cuda_prefix}${CUDA_VERSION}/local_installers/cuda_${CUDA_VERSION}_${CUDA_BUILD}_linux${cuda_suffix}.run"