diff options
author | Philip Hands <phil@hands.com> | 2016-07-24 15:25:00 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-07-27 09:01:57 -0400 |
commit | a0dceebe2526c81f9742a4f2395674875b573a55 (patch) | |
tree | b3edaa78dfabbf5cca55e1c8930cbd9616a5f3e0 | |
parent | c91f140918b8b2ea34b785fe8218b346bb393922 (diff) | |
download | jenkins.debian.net-a0dceebe2526c81f9742a4f2395674875b573a55.tar.xz |
drop single quotes around rm param, to suit node's pattern match
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/jenkins_master_wrapper.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/jenkins_master_wrapper.sh b/bin/jenkins_master_wrapper.sh index 9bc6e7a0..319c696c 100755 --- a/bin/jenkins_master_wrapper.sh +++ b/bin/jenkins_master_wrapper.sh @@ -76,7 +76,7 @@ if [ "$RETRIEVE_ARTIFACTS" = "yes" ] ; then set -x mkdir -p "$RESULTS" rsync -r -v -e "ssh -o 'Batchmode = yes' -p $PORT" "$NODE_NAME:$RESULTS/" "$RESULTS/" - ssh -o "BatchMode = yes" -p $PORT $NODE_NAME "rm -r '$RESULTS'" + ssh -o "BatchMode = yes" -p $PORT $NODE_NAME "rm -r $RESULTS" fi exit $RETVAL |