Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
chore: normalise param name
Browse files Browse the repository at this point in the history
Co-authored-by: Victor Martinez <victormartinezrubio@gmail.com>
  • Loading branch information
mdelapenya and v1v authored Apr 27, 2021
1 parent c10e38f commit f258a5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci/build-docker-images.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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()
Expand Down

0 comments on commit f258a5f

Please sign in to comment.