From a5a36ea731592047b15caf5a702f6fbcd6b76475 Mon Sep 17 00:00:00 2001 From: Christopher Schnick Date: Sat, 26 Apr 2025 19:07:12 +0200 Subject: [PATCH] Fix build issue [release] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6f12688..9146057 100644 --- a/Dockerfile +++ b/Dockerfile @@ -120,7 +120,7 @@ RUN echo "**** XPipe **** ($TARGETPLATFORM)" && \ rm "./${XPIPE_ARTIFACT}" RUN echo "**** zellij **** ($TARGETPLATFORM)" && \ - if [ "$TARGETPLATFORM" = "linux/amd64" ]; then ZELLIJ_LINK="https://github.com/zellij-org/zellij/releases/latest/download/zellij-x86_64-unknown-linux-musl.tar.gz"; else ZELLIJ_LINK="https://github.com/zellij-org/zellij/releases/latest/download/zellij-aarch64-unknown-linux-musl.tar.gz "; fi && \ + if [ "$TARGETPLATFORM" = "linux/amd64" ]; then ZELLIJ_LINK="https://github.com/zellij-org/zellij/releases/latest/download/zellij-x86_64-unknown-linux-musl.tar.gz"; else ZELLIJ_LINK="https://github.com/zellij-org/zellij/releases/latest/download/zellij-aarch64-unknown-linux-musl.tar.gz"; fi && \ curl -LO "${ZELLIJ_LINK}" && \ tar -xvf zellij*.tar.gz && \ sudo install -o root -g root -m 0755 zellij /usr/local/bin/zellij && \