diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-04-07 09:22:37 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-04-07 09:22:37 +0200 |
commit | 66981f3e733a47861121e0e65b1d29d79c29caf1 (patch) | |
tree | 0319e27cd6422a6a1ae0fba954b3db353548e8d7 /bin | |
parent | 3648a874113d41dee4ecb59a903f3b450d550735 (diff) | |
download | jenkins.debian.net-66981f3e733a47861121e0e65b1d29d79c29caf1.tar.xz |
reproducible debian: properly seperate hosts with commata in variation table
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.sh | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 086b7685..8719ab42 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -368,21 +368,18 @@ write_explaination_table() { write_page "<table class=\"main\" id=\"variation\"><tr><th>variation</th><th width=\"40%\">first build</th><th width=\"40%\">second build</th></tr>" if [ "$1" = "debian" ] ; then write_page "<tr><td>hostname</td><td>one of:" - local FIRST="" for a in ${ARCHS} ; do + local COMMA="" local ARCH_NODES="" write_page "<br /> " for i in $(echo $BUILD_NODES | sed -s 's# #\n#g' | sort -u) ; do if [ "$(echo $i | grep $a)" ] ; then - ARCH_NODES="${ARCH_NODES}$(echo $i | cut -d '.' -f1 | sed -s 's# ##g')" - if [ -z $FIRST ] ; then - FIRST=", " - else - ARCH_NODES="${ARCH_NODES}$FIRST" + echo -n "$COMMA ${ARCH_NODES}$(echo $i | cut -d '.' -f1 | sed -s 's# ##g')" >> $PAGE + if [ -z $COMMA ] ; then + COMMA="," fi fi done - write_page "${ARCH_NODES}" done write_page "</td><td>i-capture-the-hostname</td></tr>" write_page "<tr><td>domainname</td><td>$(hostname -d)</td><td>i-capture-the-domainname</td></tr>" |