diff --git a/Jenkinsfile b/Jenkinsfile index f536a84..8f934df 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,9 +7,9 @@ pipeline { steps { script { if (env.JOB_NAME == 'combo-plugin-nanterre' && env.GIT_BRANCH == 'origin/main') { - sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder -d stretch combo-plugin-nanterre' + sh 'sudo -H -u eobuilder /usr/local/bin/eobuilder combo-plugin-nanterre' } else if (env.GIT_BRANCH.startsWith('hotfix/')) { - sh "sudo -H -u eobuilder /usr/local/bin/eobuilder -d stretch --branch ${env.GIT_BRANCH} --hotfix combo-plugin-nanterre" + sh "sudo -H -u eobuilder /usr/local/bin/eobuilder --branch ${env.GIT_BRANCH} --hotfix combo-plugin-nanterre" } } }