Skip to content

Commit 0f1fea6

Browse files
fix(nx-cloud): adjust string templating
1 parent 1632c6e commit 0f1fea6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{{ range $name, $manifest := .Values.extraObjects }}
22
---
3-
{{- if typeIs "string" $manifest }}
4-
{{- $manifest }}
5-
{{- else }}
6-
{{- toYaml $manifest }}
7-
{{- end }}
3+
{{ if typeIs "string" $manifest }}
4+
{{ $manifest }}
5+
{{ else }}
6+
{{ toYaml $manifest }}
7+
{{ end }}
88
{{ end }}

0 commit comments

Comments
 (0)