Skip to content

Commit

Permalink
Merge pull request #55 from nrwl/steve/fix/proper-quoting
Browse files Browse the repository at this point in the history
Fix quoting on cloud mode, was using '' and ""
  • Loading branch information
stevepentland committed May 18, 2023
2 parents 17186bb + 0eeb17c commit db42bd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/nx-cloud/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: nx-cloud
description: Nx Cloud Helm Chart
type: application
version: 0.10.1
version: 0.10.2
maintainers:
- name: nx
url: "https://nx.app/"
Expand Down
2 changes: 1 addition & 1 deletion charts/nx-cloud/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Below are various little env snippets that multiple mainifests make use of
{{- define "nxCloud.env.mode" }}
{{- if .Values.mode }}
- name: NX_CLOUD_MODE
value: '{{ .Values.mode | quote }}'
value: {{ .Values.mode | quote }}
{{- end }}
{{- end }}

Expand Down

0 comments on commit db42bd7

Please sign in to comment.