From 0b4173e5c95017ff7ac1071aec558f6dda339e4e Mon Sep 17 00:00:00 2001 From: Michael Trip Date: Tue, 3 Oct 2023 17:11:14 +0200 Subject: [PATCH] testing --- xfce/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xfce/Dockerfile b/xfce/Dockerfile index 5281367..cb66925 100644 --- a/xfce/Dockerfile +++ b/xfce/Dockerfile @@ -12,9 +12,9 @@ WORKDIR /tmp RUN \ dnf install -y wget && \ - if [ "$TARGETARCH" = "amd64" ]; then \ + if [ "$TARGETARCH" == "amd64" ]; then \ wget -O /tmp/openlens.rpm https://github.com/MuhammedKalkan/OpenLens/releases/download/v6.5.2-366/OpenLens-6.5.2-366.x86_64.rpm; \ - elif [ "$TARGETARCH" = "arm64" ]; then \ + elif [ "$TARGETARCH" == "arm64" ]; then \ wget -O /tmp/openlens.rpm https://github.com/MuhammedKalkan/OpenLens/releases/download/v6.5.2-366/OpenLens-6.5.2-366.aarch64.rpm; \ else \ echo "Unsupported architecture: $TARGETARCH"; \