mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-23 05:08:34 +01:00
fixed cake invocation using wrong formatting
This commit is contained in:
parent
20242119d5
commit
80de2bdb11
1 changed files with 2 additions and 2 deletions
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
|
@ -4,7 +4,7 @@ pipeline {
|
||||||
stage('Cake Build') {
|
stage('Cake Build') {
|
||||||
steps {
|
steps {
|
||||||
sh 'chmod +x ./build.sh'
|
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') {
|
stage('Document') {
|
||||||
|
@ -12,7 +12,7 @@ pipeline {
|
||||||
branch 'release'
|
branch 'release'
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
sh './build.sh -Target Document'
|
sh './build.sh -Target=Document'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue