tomishinets.v 6 years ago
parent
commit
4f380c49ff
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Jenkinsfile

+ 1 - 1
Jenkinsfile

@@ -79,7 +79,7 @@ pipeline {
         steps {
           echo "Updating tag info in ${SWARM_GIT_NAME} repository"
           withCredentials([sshUserPrivateKey(credentialsId: 'provision', keyFileVariable: 'GIT_SSH_KEY', passphraseVariable: '', usernameVariable: 'GIT_SSH_USERNAME')]) {
-            sh """GIT_SSH_COMMAND='ssh -i \${GIT_SSH_KEY} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \
+            sh """GIT_SSH_COMMAND='ssh -i ${GIT_SSH_KEY} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \
                   git clone \${SWARM_GIT_URL} && cd \${SWARM_GIT_NAME}
                   if [ $(git branch --list -a | grep -q \${branch}; echo $?) == 0 ];then echo "${branch} is already exist";git checkout \${branch}; \
                   else echo "${branch} does not exist!!!"; git checkout -b \${branch};fi