From f4db8e722fc67b6db1c372b6c6d19ea3e1ad07d8 Mon Sep 17 00:00:00 2001 From: Thomas E Lackey Date: Mon, 10 Jul 2023 14:26:02 -0500 Subject: [PATCH] Use ';' for the rm. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c7426f3..6a3ef7d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ ARG GIT_VDBTO_TOKEN WORKDIR /plugeth-statediff/ COPY go.mod go.sum . RUN [ -n "$GIT_VDBTO_TOKEN" ] && git config --global url."https://$GIT_VDBTO_TOKEN:@git.vdb.to/".insteadOf "https://git.vdb.to/" ; \ - go mod download && \ + go mod download ; \ rm -f ~/.gitconfig COPY . .