summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_rpms.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_rpms.sh
parente68d7396b0bae3cba4a8fd36c2e0fc5c64227b65 (diff)
downloadjenkins.debian.net-4ca0a862db2ae24bbe814d2785133aea0545fb63.tar.xz
reproducible archlinux+rpms: use mktemp -t
Diffstat (limited to 'bin/reproducible_html_rpms.sh')
-rwxr-xr-xbin/reproducible_html_rpms.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/bin/reproducible_html_rpms.sh b/bin/reproducible_html_rpms.sh
index 36ae543a..d1c78dab 100755
--- a/bin/reproducible_html_rpms.sh
+++ b/bin/reproducible_html_rpms.sh
@@ -17,15 +17,15 @@ ARCH="$2"
# analyse results to create the webpage
#
echo "$(date -u) - starting to analyse build results."
-HTML_FTBFS=$(mktemp)
-HTML_FTBR=$(mktemp)
-HTML_DEPWAIT=$(mktemp)
-HTML_404=$(mktemp)
-HTML_GOOD=$(mktemp)
-HTML_UNKNOWN=$(mktemp)
-HTML_BUFFER=$(mktemp)
+HTML_FTBFS=$(mktemp -t rhtml-rpms-XXXXXXXX)
+HTML_FTBR=$(mktemp -t rhtml-rpms-XXXXXXXX)
+HTML_DEPWAIT=$(mktemp -t rhtml-rpms-XXXXXXXX)
+HTML_404=$(mktemp -t rhtml-rpms-XXXXXXXX)
+HTML_GOOD=$(mktemp -t rhtml-rpms-XXXXXXXX)
+HTML_UNKNOWN=$(mktemp -t rhtml-rpms-XXXXXXXX)
+HTML_BUFFER=$(mktemp -t rhtml-rpms-XXXXXXXX)
HTML_TARGET=""
-HTML_RPM_STATS=$(mktemp)
+HTML_RPM_STATS=$(mktemp -t rhtml-rpms-XXXXXXXX)
echo "$(date -u) - starting to analyse build results for '$RELEASE' ($ARCH)."
TOTAL=$(cat ${RPM_PKGS}_$RELEASE | sed -s "s# #\n#g" | wc -l)