Closed ErrrorMaxx closed 8 months ago
splitList
uses strings.Split
(which returns []string
) and quoteList
expects its list
parameter to be []any
. You can't directly pass []string
to a function expecting []any
. I suspect this requires an override for splitList
that converts the output to []interface{}
or something.
Describe the bug
splitList
andquoteList
don't work in pairTo reproduce
Expected behavior
This template should not fail and return list of quoted strings
Output of command with the
--verbose
flagOutput of
chezmoi doctor