From 67a9f9997a82a61b0ecdd65e1240ea86d1686451 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Wed, 24 Sep 2014 00:09:42 +0200 Subject: reproducible: name good+bad packages --- bin/reproducible_build.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'bin') diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index dc696d0d..6a5f8b3e 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -17,6 +17,8 @@ fi COUNT_TOTAL=0 COUNT_GOOD=0 COUNT_BAD=0 +GOOD="" +BAD="" for PACKAGE in "$@" ; do let "COUNT_TOTAL=COUNT_TOTAL+1" rm b1 b2 -rf @@ -37,9 +39,11 @@ for PACKAGE in "$@" ; do echo echo "${PACKAGE} build successfull." let "COUNT_GOOD=COUNT_GOOD+1" + GOOD="${PACKAGE} ${GOOD}" else echo "Warning: ${PACKAGE} failed to build reproducible." let "COUNT_BAD=COUNT_BAD+1" + GOOD="${PACKAGE} ${BAD}" fi rm b1 b2 ${TMPFILE} -rf @@ -47,7 +51,5 @@ done echo echo "$COUNT_TOTAL packages attempted to build in total." -echo "$COUNT_GOOD packages successfully built reproducible." -echo "$COUNT_BAD packages failed to built reproducible." -echo -echo "The full list of packages: $@" +echo "$COUNT_GOOD packages successfully built reproducible: ${GOOD}" +echo "$COUNT_BAD packages failed to built reproducible: ${BAD}" -- cgit v1.2.3-54-g00ecf