From 1efe122edfc12a7985f25f2d91d46b66129b64a9 Mon Sep 17 00:00:00 2001 From: yuobrezkov Date: Fri, 21 Feb 2025 14:35:54 +0300 Subject: [PATCH] Fixed brackets in jenkinsfile 2 --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3416175..796dc26 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,7 +9,7 @@ pipeline { stages { stage('Init variables') { when { - expression{env.CHANGE_BRANCH?.startsWith('rc')} + expression { env.CHANGE_BRANCH?.startsWith('rc') } } steps { script { @@ -19,7 +19,7 @@ pipeline { } stage('Build tagged image and run tests') { when { - expression(env.CHANGE_BRANCH?.startsWith('rc')) + expression { env.CHANGE_BRANCH?.startsWith('rc') } } steps { script {