From a5a44e5242d67908ea17b5aa2ec88b5bd1de2040 Mon Sep 17 00:00:00 2001 From: yxxhero <11087727+yxxhero@users.noreply.github.com> Date: Mon, 7 Apr 2025 08:24:11 +0800 Subject: [PATCH] Update pkg/state/create.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: yxxhero --- pkg/state/create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/state/create.go b/pkg/state/create.go index 68b57675..8ae4150b 100644 --- a/pkg/state/create.go +++ b/pkg/state/create.go @@ -109,7 +109,7 @@ func (c *StateCreator) Parse(content []byte, baseDir, file string) (*HelmState, if err == io.EOF { break } else if err != nil { - return nil, &StateLoadError{fmt.Sprintf("failed to read %s: reading document at index %d, you shuld add .gotmpl extension to your helmfile to enable helmfile to load it as a template since helmfile v1", file, i), err} + return nil, &StateLoadError{fmt.Sprintf("failed to read %s: reading document at index %d, you should add .gotmpl extension to your helmfile to enable helmfile to load it as a template since helmfile v1", file, i), err} } if err := mergo.Merge(&state, &intermediate, mergo.WithAppendSlice); err != nil {