diff options
author | Philip Hands <phil@hands.com> | 2016-08-03 18:33:55 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-08-03 18:44:57 +0200 |
commit | 5417116587a5b31b36ad6ef505c1e0153db26725 (patch) | |
tree | 1a0dd728217ab5c1a635a237cecb044c945b4c26 /bin | |
parent | 633fc3c681e4e0210c400939ebbbf3a4177ca659 (diff) | |
download | jenkins.debian.net-5417116587a5b31b36ad6ef505c1e0153db26725.tar.xz |
wrapper: retreive_artifacts: ls the $RESULTS dir, just to check it's there
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/jenkins_master_wrapper.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/jenkins_master_wrapper.sh b/bin/jenkins_master_wrapper.sh index 2701672b..2ae8f908 100755 --- a/bin/jenkins_master_wrapper.sh +++ b/bin/jenkins_master_wrapper.sh @@ -78,6 +78,7 @@ if [ "$RETRIEVE_ARTIFACTS" = "yes" ] ; then mkdir -p "$RESULTS" rsync -r -v -e "ssh -o 'Batchmode = yes' -p $PORT" "$NODE_NAME:$NODE_RESULTS/" "$RESULTS/" ssh -o "BatchMode = yes" -p $PORT $NODE_NAME "rm -r $NODE_RESULTS" + ls -la "$RESULTS" fi exit $RETVAL |