Skip to content

Commit 7183122

Browse files
Greendor1234arttor
authored andcommitted
changed variable name
1 parent 6ab3f8c commit 7183122

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/processor/deployment/deployment.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ func (d deployment) Process(appMeta helmify.AppMetadata, obj *unstructured.Unstr
130130
return true, nil, err
131131
}
132132

133-
match := regexp.MustCompile(`'({{((.*|.*\n.*))}}.*)'`)
134-
spec = match.ReplaceAllString(spec, "${1}")
133+
r := regexp.MustCompile(`'({{((.*|.*\n.*))}}.*)'`)
134+
spec = r.ReplaceAllString(spec, "${1}")
135135

136136
return true, &result{
137137
values: values,

0 commit comments

Comments
 (0)