[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-deployment] 02/02: exclude <none>'s
From: |
gnunet |
Subject: |
[taler-deployment] 02/02: exclude <none>'s |
Date: |
Sun, 21 Apr 2024 17:58:14 +0200 |
This is an automated email from the git hooks/post-receive script.
nora-grothoff pushed a commit to branch master
in repository deployment.
commit 9d9d2602ca25cb28397c2b67328b2dcb2b7c1297
Author: Nullptrderef <nullptrderef@proton.me>
AuthorDate: Sun Apr 21 17:58:10 2024 +0200
exclude <none>'s
---
packaging/docker-alpine/Makefile | 2 +-
packaging/docker-alpine/contrib/publish.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/packaging/docker-alpine/Makefile b/packaging/docker-alpine/Makefile
index 4fbc4e2..cbfb75a 100644
--- a/packaging/docker-alpine/Makefile
+++ b/packaging/docker-alpine/Makefile
@@ -42,7 +42,7 @@ build-anastasis: build-anastasis-builder
clean:
./contrib/clean.sh
-publish:
+publish: build
./contrib/publish.sh $(author)
build: build-builder build-libmicrohttpd build-libgnunet
build-libtalerexchange build-libtalermerchant build-anastasis
diff --git a/packaging/docker-alpine/contrib/publish.sh
b/packaging/docker-alpine/contrib/publish.sh
index a824b9f..2e98a0b 100755
--- a/packaging/docker-alpine/contrib/publish.sh
+++ b/packaging/docker-alpine/contrib/publish.sh
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -e
AUTHOR="$1";
-IMAGES="$(docker image ls -a | awk '{print $1 ":" $2 " " $3}' | awk 'NR > 1' |
grep "$AUTHOR/")"
+IMAGES="$(docker image ls -a | grep -v '<none>' | awk '{print $1 ":" $2 " "
$3}' | awk 'NR > 1' | grep "$AUTHOR/")"
echo "Pushing Images:
$IMAGES"
while IFS= read -r IMAGE; do
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.