diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-11-12 20:03:37 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-11-12 20:03:37 +0100 |
commit | e02f2c8f37830bc585e1f7e30d3525ad03f094ab (patch) | |
tree | 16e46b6536d6496ac2f656e2f7bf12ddea9b69fa | |
parent | 2b5e8f34e5791d70ab89479f9fd035aa53bc561b (diff) | |
download | jenkins.debian.net-e02f2c8f37830bc585e1f7e30d3525ad03f094ab.tar.xz |
reproducible archlinux: fix variation table
-rwxr-xr-x | bin/reproducible_common.sh | 4 | ||||
-rwxr-xr-x | bin/reproducible_html_archlinux.sh | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 922a14ac..1aa1e769 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -341,9 +341,9 @@ write_explaination_table() { fi write_page "<tr><td>env TZ</td><td>TZ=\"/usr/share/zoneinfo/Etc/GMT+12\"</td><td>TZ=\"/usr/share/zoneinfo/Etc/GMT-14\"</td></tr>" if [ "$1" = "Debian" ] ; then - write_page "<tr><td>env LANG</td><td>LANG<em>C</em></td><td>LANG=\"fr_CH.UTF-8\"</td></tr>" + write_page "<tr><td>env LANG</td><td>LANG=<em>C</em></td><td>LANG=\"fr_CH.UTF-8\"</td></tr>" elif [ "$1" = "Arch Linux" ] ; then - write_page "<tr><td>env LANG</td><td>LANG<em>not set</em></td><td>LANG=\"fr_CH.UTF-8\"</td></tr>" + write_page "<tr><td>env LANG</td><td>LANG=<em>not set</em></td><td>LANG=\"fr_CH.UTF-8\"</td></tr>" else write_page "<tr><td>env LANG</td><td>LANG=\"en_GB.UTF-8\"</td><td>LANG=\"fr_CH.UTF-8\"</td></tr>" fi diff --git a/bin/reproducible_html_archlinux.sh b/bin/reproducible_html_archlinux.sh index 94015cbc..735336c0 100755 --- a/bin/reproducible_html_archlinux.sh +++ b/bin/reproducible_html_archlinux.sh @@ -13,6 +13,7 @@ common_init "$@" # # create the webpage # +DATE=$(date -u +'%Y-%m-%d') ARCHBASE=$BASE/archlinux cd $ARCHBASE PAGE=archlinux.html |