summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_archlinux.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-12-18 13:07:19 +0100
committerHolger Levsen <holger@layer-acht.org>2015-12-18 13:07:19 +0100
commit4ca0a862db2ae24bbe814d2785133aea0545fb63 (patch)
tree144ad93c3b7cb3a99b5f24c3517aade64ca2f160 /bin/reproducible_html_archlinux.sh
parente68d7396b0bae3cba4a8fd36c2e0fc5c64227b65 (diff)
downloadjenkins.debian.net-4ca0a862db2ae24bbe814d2785133aea0545fb63.tar.xz
reproducible archlinux+rpms: use mktemp -t
Diffstat (limited to 'bin/reproducible_html_archlinux.sh')
-rwxr-xr-xbin/reproducible_html_archlinux.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/bin/reproducible_html_archlinux.sh b/bin/reproducible_html_archlinux.sh
index 740cc8bf..eb9257bb 100755
--- a/bin/reproducible_html_archlinux.sh
+++ b/bin/reproducible_html_archlinux.sh
@@ -18,16 +18,16 @@ echo "$(date -u) - starting to analyse build results."
for i in 0 1 2 3 4 ; do
HTML_FTBFS[$i]=$(mktemp)
done
-HTML_FTBR=$(mktemp)
-HTML_DEPWAIT=$(mktemp)
+HTML_FTBR=$(mktemp -t rhtml-archlinux-XXXXXXXX)
+HTML_DEPWAIT=$(mktemp -t rhtml-archlinux-XXXXXXXX)
for i in 0 1 ; do
- HTML_404[$i]=$(mktemp)
+ HTML_404[$i]=$(mktemp -t rhtml-archlinux-XXXXXXXX)
done
-HTML_GOOD=$(mktemp)
-HTML_UNKNOWN=$(mktemp)
-HTML_BUFFER=$(mktemp)
+HTML_GOOD=$(mktemp -t rhtml-archlinux-XXXXXXXX)
+HTML_UNKNOWN=$(mktemp -t rhtml-archlinux-XXXXXXXX)
+HTML_BUFFER=$(mktemp -t rhtml-archlinux-XXXXXXXX)
HTML_TARGET=""
-HTML_REPOSTATS=$(mktemp)
+HTML_REPOSTATS=$(mktemp -t rhtml-archlinux-XXXXXXXX)
for REPOSITORY in $ARCHLINUX_REPOS ; do
echo "$(date -u) - starting to analyse build results for '$REPOSITORY'."
TOTAL=$(cat ${ARCHLINUX_PKGS}_$REPOSITORY | sed -s "s# #\n#g" | wc -l)