From 80de2bdb111e3cbd639e1e9de980fd47f2f747e1 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Thu, 21 May 2020 22:56:04 +0200 Subject: [PATCH] fixed cake invocation using wrong formatting --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b10a8ee..3cbdf8f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' } } }