summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_rsync_remote_results.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-11-09 16:23:29 +0100
committerHolger Levsen <holger@layer-acht.org>2015-11-09 16:23:29 +0100
commitc9f23f60d4cdd57e356185ef34cd3870c8ec3fdb (patch)
tree7ec9f304fdec3185be1b67cfe37b92cff9861332 /bin/reproducible_html_rsync_remote_results.sh
parentcef31939c934c5fcbadcc23e1db1cf42e6261a1b (diff)
downloadjenkins.debian.net-c9f23f60d4cdd57e356185ef34cd3870c8ec3fdb.tar.xz
reproducible: fixup cef31939, mktemp usage
Diffstat (limited to 'bin/reproducible_html_rsync_remote_results.sh')
-rwxr-xr-xbin/reproducible_html_rsync_remote_results.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_rsync_remote_results.sh b/bin/reproducible_html_rsync_remote_results.sh
index f93f43c0..c45f14e9 100755
--- a/bin/reproducible_html_rsync_remote_results.sh
+++ b/bin/reproducible_html_rsync_remote_results.sh
@@ -14,7 +14,7 @@ common_init "$@"
rsync_remote_results() {
for PROJECT in coreboot openwrt netbsd ; do
echo "$(date -u) - Starting to rsync results for '$PROJECT'."
- local RESULTS=$(mktemp --tmpdir=$TEMPDIR reproducible-rsync-XXXXXXXXX)
+ local RESULTS=$(mktemp --tmpdir=$TEMPDIR -d reproducible-rsync-XXXXXXXXX)
rsync -r -v -e ssh profitbricks-build3-amd64.debian.net:$BASE/$PROJECT/ $RESULTS
mv $RESULTS $BASE/$PROJECT
done