From a33c7c22925002e20063dfa7846beb2f46360a8a Mon Sep 17 00:00:00 2001 From: John Date: Sat, 26 Feb 2022 14:03:58 +0100 Subject: [PATCH] log limits --- contrib/docker/build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/docker/build.sh b/contrib/docker/build.sh index 7ff51366..6b241e43 100755 --- a/contrib/docker/build.sh +++ b/contrib/docker/build.sh @@ -9,6 +9,7 @@ fi archs=linux/amd64,linux/386,linux/arm/v7,linux/arm64 if [[ -n "$LIMITARCH" ]]; then archs=$(echo ",$archs," | sed -e "s#.*,\([^,/]*/$LIMITARCH\),.*#\1#") + echo "limiting to arch $archs" fi if [[ -z "$1" ]] || [[ "x$1" == "xrelease" ]]; then UPLOAD_URL= @@ -38,6 +39,7 @@ else images='bullseye buster stretch' if [[ -n "$LIMITIMG" ]]; then images=$(echo " $images " | sed -e "s#.* \($LIMITIMG\) .*#\1#") + echo "limiting to image $images" fi outputFmt='-o out/%IMAGE%' tagsuffix=":v$version-prep"