diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-10-17 00:30:47 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-10-17 00:30:47 +0200 |
commit | 46329be08b2a5a848c0693c4a10cdc5c234673f6 (patch) | |
tree | 478da469e95a6e4906376c99359f8e235f67841c | |
parent | 6752e2eff82e8707e45edf9f8a6d0fad87693ba8 (diff) | |
download | jenkins.debian.net-46329be08b2a5a848c0693c4a10cdc5c234673f6.tar.xz |
fixup syntax error
-rwxr-xr-x | bin/reproducible_common.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index d13a342e..25e1e047 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -359,7 +359,7 @@ write_explaination_table() { if [ "$1" != "FreeBSD" ] ; then if [ "$1" = "debian" ] ; then write_page "<tr><td>kernel version, modified using /usr/bin/linux64 --uname-2.6</td></td><td>one of: $(cat /srv/reproducible-results/node-information/* | grep KERNEL1 | cut -d '=' -f2- | sort -u | tr '\n' '\0' | xargs -0 -n1 echo '<br /> ')</td><td>one of: $(cat /srv/reproducible-results/node-information/* | grep KERNEL2 | cut -d '=' -f2- | sort -u | tr '\n' '\0' | xargs -0 -n1 echo '<br /> ')</td></tr>" - if [ "$1" != "Archlinux" ] ; then + elif [ "$1" != "Archlinux" ] ; then write_page "<tr><td>kernel version, modified using /usr/bin/linux64 --uname-2.6</td><td>$(uname -sr)</td><td>$(/usr/bin/linux64 --uname-2.6 uname -sr)</td></tr>" else write_page "<tr><td>kernel version</td><td colspan=\"2\"> is not yet varied between rebuilds of $1.\"</td></tr>" |