From 74a3de69603e50ff07d3de5f35abe2a23cb86ef2 Mon Sep 17 00:00:00 2001 From: gradientskier Date: Sun, 28 Sep 2025 14:07:11 +0200 Subject: [PATCH] build-all-images.sh: remove duplicate entry zcash-walletd The same entry is already present in line 1226 of the file --- contrib/build-all-images.sh | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/contrib/build-all-images.sh b/contrib/build-all-images.sh index d6440620c..297627ab6 100644 --- a/contrib/build-all-images.sh +++ b/contrib/build-all-images.sh @@ -661,7 +661,7 @@ DOCKERFILE="Dockerfile" echo "Building fireflyiii/core:latest" git clone https://dev.azure.com/Firefly-III/_git/MainImage core cd core -git checkout +git checkout cd "$(dirname $DOCKERFILE)" docker build -f "$DOCKERFILE" -t "fireflyiii/core:latest" . cd - && cd .. @@ -1257,17 +1257,3 @@ git checkout master cd "$(dirname $DOCKERFILE)" docker build -f "$DOCKERFILE" -t "electriccoinco/lightwalletd:latest" . cd - && cd .. - - -# Build zcash-walletd -# https://raw.githubusercontent.com/elemental-pay/zcash-walletd/feat/data-config/docker/Dockerfile -DOCKERFILE="docker/Dockerfile" -echo "Building 1337bytes/zcash-walletd:0.0.2" -git clone https://github.com/elemental-pay/zcash-walletd zcash-walletd -cd zcash-walletd -git checkout feat/data-config -cd "$(dirname $DOCKERFILE)" -docker build -f "$DOCKERFILE" -t "1337bytes/zcash-walletd:0.0.2" . -cd - && cd .. - -