diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-11-09 16:30:08 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-11-09 16:30:08 +0100 |
commit | 1bafd72fbb8c030159df435f9a4f9324bc6547ac (patch) | |
tree | 003da28df4010f7a1ec6a650c1a4ed6ad82eea59 /bin | |
parent | c9f23f60d4cdd57e356185ef34cd3870c8ec3fdb (diff) | |
download | jenkins.debian.net-1bafd72fbb8c030159df435f9a4f9324bc6547ac.tar.xz |
reproducible: enable debug
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_rsync_remote_results.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/reproducible_html_rsync_remote_results.sh b/bin/reproducible_html_rsync_remote_results.sh index c45f14e9..1da10410 100755 --- a/bin/reproducible_html_rsync_remote_results.sh +++ b/bin/reproducible_html_rsync_remote_results.sh @@ -3,7 +3,7 @@ # Copyright 2015 Holger Levsen <holger@layer-acht.org> # released under the GPLv=2 -DEBUG=false +DEBUG=true . /srv/jenkins/bin/common-functions.sh common_init "$@" @@ -17,6 +17,7 @@ rsync_remote_results() { 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 + echo "$(date -u) - $REPRODUCIBLE_URL/$PROJECT has been updated." done } |