From d536d90dd762b264f29cb673ad6ecc1bc0958bc1 Mon Sep 17 00:00:00 2001 From: Brian Stinson Date: Apr 12 2018 16:17:18 +0000 Subject: quote the environment variables when passing on to the duffy node --- diff --git a/.cico.pipeline b/.cico.pipeline index 60023a8..1f6af84 100644 --- a/.cico.pipeline +++ b/.cico.pipeline @@ -1,7 +1,7 @@ def onmyduffynode(script){ ansiColor('xterm'){ timestamps{ - sh 'ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -l root ${DUFFY_NODE}.ci.centos.org -t REPO=${REPO} BRANCH=${BRANCH} "' + script + '"' + sh 'ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -l root ${DUFFY_NODE}.ci.centos.org -t \"REPO=${REPO} BRANCH=${BRANCH}\" "' + script + '"' } } }