From a93f40a713d8026807788b297db9eb01c1eed43f Mon Sep 17 00:00:00 2001 From: Griefed <griefed@griefed.de> Date: Wed, 23 Jun 2021 06:15:26 +0000 Subject: [PATCH] fix: If statements in Dockerfiles, man. --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 234d6d6..e4369bb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,13 +26,13 @@ COPY sources.list /tmp/ COPY sources.list.arm /tmp/ RUN \ - if [ $FOCAL_ARCH="amd64" ];then - rm /tmp/sources.list.arm - else - rm /tmp/sources.list + if [[ "$FOCAL_ARCH" = "amd64" ]]; then \ + rm /tmp/sources.list.arm; \ + else \ + rm /tmp/sources.list; \ mv \ - /tmp/sources.list.arm \ - /tmp/sources.list + /tmp/sources.list.arm; \ + /tmp/sources.list; \ fi FROM scratch -- GitLab