Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit 72e44f4

Browse files
author
Amund Meling
authored
🐛 Stringify default values (#58)
#patch
1 parent 6d97825 commit 72e44f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vars/helmPullChart.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ void call(Map target, Map opts = [:]) {
33
String helmContainer = containers.helm ?: ''
44
List<String> helmOpts = opts.helmOpts ?: ["--entrypoint=''"]
55
String chart = target.chart
6-
String repo = target.repo ?: https://evry-ace.github.io/helm-charts
7-
String repoName = target.repoName ?: ace
6+
String repo = target.repo ?: 'https://evry-ace.github.io/helm-charts'
7+
String repoName = target.repoName ?: 'ace'
88
String version = target.version ?: ''
99

1010
if (!chart) {

0 commit comments

Comments
 (0)