From 1882de3f16508613b36442bf9d862847bfb10aa0 Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Sat, 26 Oct 2024 07:14:11 +0200 Subject: [PATCH] fix --- op/Dockerfile.debug | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/op/Dockerfile.debug b/op/Dockerfile.debug index 7dbcf80a..3185b062 100644 --- a/op/Dockerfile.debug +++ b/op/Dockerfile.debug @@ -31,7 +31,7 @@ ENV OP_NODE_REPO=https://github.com/ethereum-optimism/optimism.git ARG OP_NODE_VERSION ARG OP_NODE_COMMIT RUN git clone $OP_NODE_REPO --branch op-node/$OP_NODE_VERSION --single-branch . && \ - git switch -c branch-$OP_NODE_VERSION + git switch -c $OP_NODE_VERSION # Install pnpm RUN npm install -g pnpm && \ @@ -76,7 +76,7 @@ ARG OP_GETH_COMMIT # avoid depth=1, so the geth build can read tags RUN git clone $OP_GETH_REPO --branch $OP_GETH_VERSION --single-branch . && \ - git switch -c branch-$OP_GETH_VERSION + git switch -c $OP_GETH_VERSION RUN go run build/ci.go install -static ./cmd/geth