mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 20:58: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') {
|
||||
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'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue