diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-02 15:28:32 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-02 15:28:32 +0200 |
commit | a5cdcc3b1b6c65ae71447778e114a13595b5f491 (patch) | |
tree | 946f8d275cf898a22417284946a4be82c298cd37 | |
parent | 9785077b7077f5c1e185fdb1311bbdac468e3474 (diff) | |
download | jenkins.debian.net-a5cdcc3b1b6c65ae71447778e114a13595b5f491.tar.xz |
fixup 9785077: reproducible: improve binary package display
-rwxr-xr-x | bin/reproducible_html_repository_comparison.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_repository_comparison.sh b/bin/reproducible_html_repository_comparison.sh index e8eef5fa..55c62f04 100755 --- a/bin/reproducible_html_repository_comparison.sh +++ b/bin/reproducible_html_repository_comparison.sh @@ -109,7 +109,7 @@ for PKG in $SOURCEPKGS ; do if [ ! -z "$BET" ] ; then for ARCH in $ARCHS ; do i="$(grep-dctrl -n -s Package -r -FPackage $PKG --and -FVersion $BET --and -FArchitecture all --or -FArchitecture $ARCH $PACKAGES|xargs -r echo)" - if [ ! -z $i ] ; then + if [ ! -z "$i" ] ; then i="$ARCH+all: $i" else i="<span class=\"red\">no binaries for $ARCH</span>" |