From c3f81ed55abd76c824b61de90eb0833f3d8af5cb Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Wed, 14 Feb 2024 12:09:55 -0500 Subject: [PATCH] use sh syntax --- Dockerfile.complex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.complex b/Dockerfile.complex index e7a234d..eb80898 100644 --- a/Dockerfile.complex +++ b/Dockerfile.complex @@ -9,12 +9,12 @@ RUN \ curl && \ echo "**** grab rclone ****" && \ mkdir -p /root-layer && \ - if [[ $(uname -m) == "x86_64" ]]; then \ + if [ $(uname -m) = "x86_64" ]; then \ echo "Downloading x86_64 tarball" && \ curl -o \ /root-layer/rclone.deb -L \ "https://downloads.rclone.org/v1.47.0/rclone-v1.47.0-linux-amd64.deb"; \ - elif [[ $(uname -m) == "aarch64" ]]; then \ + elif [ $(uname -m) = "aarch64" ]; then \ echo "Downloading aarch64 tarball" && \ curl -o \ /root-layer/rclone.deb -L \