diff options
-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 |