From f258a5f7800ecf76a7db2a5d3449c6450a1a5031 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Tue, 27 Apr 2021 17:13:28 +0200 Subject: [PATCH] chore: normalise param name Co-authored-by: Victor Martinez --- .ci/build-docker-images.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/build-docker-images.groovy b/.ci/build-docker-images.groovy index 2b3d646907..4fc12c886a 100644 --- a/.ci/build-docker-images.groovy +++ b/.ci/build-docker-images.groovy @@ -25,7 +25,7 @@ pipeline { quietPeriod(10) } parameters { - string(name: 'branch_specifier', defaultValue: 'master', description: 'It would not be defined on the first build, see JENKINS-41929.') + string(name: 'BRANCH_SPECIFIER', defaultValue: 'master', description: 'It would not be defined on the first build, see JENKINS-41929.') } triggers { cron 'H H(4-5) * * 1-5' @@ -35,7 +35,7 @@ pipeline { environment { // Parameters will be empty for the very first build, setting an environment variable // with the same name will workaround the issue. see JENKINS-41929 - BRANCH_SPECIFIER = "${params?.branch_specifier}" + BRANCH_SPECIFIER = "${params?.BRANCH_SPECIFIER}" } steps { deleteDir()