Jenkinsfile: use default distribution target for hotfix branch (#41301)

This commit is contained in:
Christophe Siraut 2020-04-24 14:00:21 +02:00
parent 8b8787f89c
commit eaa10963ef
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

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