diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-11-09 16:23:29 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-11-09 16:23:29 +0100 |
commit | c9f23f60d4cdd57e356185ef34cd3870c8ec3fdb (patch) | |
tree | 7ec9f304fdec3185be1b67cfe37b92cff9861332 /bin/reproducible_html_rsync_remote_results.sh | |
parent | cef31939c934c5fcbadcc23e1db1cf42e6261a1b (diff) | |
download | jenkins.debian.net-c9f23f60d4cdd57e356185ef34cd3870c8ec3fdb.tar.xz |
reproducible: fixup cef31939, mktemp usage
Diffstat (limited to 'bin/reproducible_html_rsync_remote_results.sh')
-rwxr-xr-x | bin/reproducible_html_rsync_remote_results.sh | 2 |
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 |