fix chezmoi.toml (escape {{ and }})

This commit is contained in:
inkch 2024-01-17 10:47:25 +09:00
parent c181c1ff3f
commit 9fd0e7831e

View File

@ -6,7 +6,7 @@
[merge] [merge]
command = "nvim" command = "nvim"
args = ["-d", "{{ .Destination }}", "{{ .Source }}", "{{ .Target }}"] args = ["-d", "{{ `{{ .Destination }}` }}", "{{ `{{ .Source }}` }}", "{{ `{{ .Target }}` }}"]
{{- $choices := list "desktop" "laptop" "server" -}} {{- $choices := list "desktop" "laptop" "server" -}}
{{- $hosttype := promptChoiceOnce . "hosttype" "What type of host?" $choices -}} {{- $hosttype := promptChoiceOnce . "hosttype" "What type of host?" $choices -}}