Skip to content

Commit

Permalink
πŸ› Stringify default values (#58)
Browse files Browse the repository at this point in the history
#patch
  • Loading branch information
Amund Meling committed Apr 30, 2021
1 parent 6d97825 commit 72e44f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vars/helmPullChart.groovy
Expand Up @@ -3,8 +3,8 @@ void call(Map target, Map opts = [:]) {
String helmContainer = containers.helm ?: ''
List<String> helmOpts = opts.helmOpts ?: ["--entrypoint=''"]
String chart = target.chart
String repo = target.repo ?: https://evry-ace.github.io/helm-charts
String repoName = target.repoName ?: ace
String repo = target.repo ?: 'https://evry-ace.github.io/helm-charts'
String repoName = target.repoName ?: 'ace'
String version = target.version ?: ''

if (!chart) {
Expand Down

0 comments on commit 72e44f4

Please sign in to comment.