Skip to content

Commit

Permalink
Fix $
Browse files Browse the repository at this point in the history
  • Loading branch information
ewoutp committed Mar 8, 2018
1 parent 642f9bd commit 52731f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ pipeline {
stage('Test') {
steps {
script {
def configs = "{params.KUBECONFIGS}".split(",")
def configs = "${params.KUBECONFIGS}".split(",")
def testTasks = [:]
for (kubeconfig in configs) {
testTasks["${kubeconfig}"] = buildTestSteps(kubeconfig)
Expand All @@ -96,7 +96,7 @@ pipeline {
post {
always {
script {
def configs = "{params.KUBECONFIGS}".split(",")
def configs = "${params.KUBECONFIGS}".split(",")
def cleanupTasks = [:]
for (kubeconfig in configs) {
cleanupTasks["${kubeconfig}"] = buildCleanupSteps(kubeconfig)
Expand Down

0 comments on commit 52731f5

Please sign in to comment.