jenkinsfile: use double quotes for proper substitution (?)

This commit is contained in:
Frédéric Péters 2019-07-02 12:19:44 +02:00
parent 526d331f7d
commit f95d59a02c
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -28,7 +28,7 @@ pipeline {
if (env.JOB_NAME == 'combo' && env.GIT_BRANCH == 'origin/master') {
sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder -d stretch combo'
} else if (env.GIT_BRANCH.startsWith('hotfix/')) {
sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder -d stretch --branch ${env.GIT_BRANCH} --hotfix combo'
sh "sudo -H -u eobuilder /usr/local/bin/eobuilder -d stretch --branch ${env.GIT_BRANCH} --hotfix combo"
}
}
}