summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_build_archlinux_pkg.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-12-16 14:39:59 +0100
committerHolger Levsen <holger@layer-acht.org>2015-12-16 14:39:59 +0100
commitd2478fbb8818ac2f4bc09e77ad5353f322e3607b (patch)
tree1e477308acd13527ddd982a15849e5820632448c /bin/reproducible_build_archlinux_pkg.sh
parent97c2469c69f3533aef3160b27c796713c69d2f2e (diff)
downloadjenkins.debian.net-d2478fbb8818ac2f4bc09e77ad5353f322e3607b.tar.xz
always use mktemp with '-t -XXXX'
Diffstat (limited to 'bin/reproducible_build_archlinux_pkg.sh')
-rwxr-xr-xbin/reproducible_build_archlinux_pkg.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_build_archlinux_pkg.sh b/bin/reproducible_build_archlinux_pkg.sh
index 0dab2b36..b60aaf8b 100755
--- a/bin/reproducible_build_archlinux_pkg.sh
+++ b/bin/reproducible_build_archlinux_pkg.sh
@@ -213,7 +213,7 @@ remote_build() {
# below is what controls the world
#
-TMPDIR=$(mktemp --tmpdir=/srv/reproducible-results -d) # where everything actually happens
+TMPDIR=$(mktemp --tmpdir=/srv/reproducible-results -d -t rbuild-archlinux-XXXXXXXX) # where everything actually happens
trap cleanup_all INT TERM EXIT
cd $TMPDIR