1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-02 13:23:37 +02:00

fixed cake invocation using wrong formatting

This commit is contained in:
Ellpeck 2020-05-21 22:56:04 +02:00
parent 20242119d5
commit 80de2bdb11

4
Jenkinsfile vendored
View file

@ -4,7 +4,7 @@ pipeline {
stage('Cake Build') {
steps {
sh 'chmod +x ./build.sh'
sh './build.sh -Target Push -Branch ' + env.BRANCH_NAME
sh './build.sh -Target=Push -Branch=' + env.BRANCH_NAME
}
}
stage('Document') {
@ -12,7 +12,7 @@ pipeline {
branch 'release'
}
steps {
sh './build.sh -Target Document'
sh './build.sh -Target=Document'
}
}
}