fix typo in state.go

Signed-off-by: yxxhero <aiopsclub@163.com>
This commit is contained in:
yxxhero 2022-04-11 13:12:32 +08:00 committed by Quan TRAN
parent f1a250cab3
commit 9c0c021dc9
1 changed files with 2 additions and 2 deletions

View File

@ -3082,7 +3082,7 @@ func (st *HelmState) GenerateOutputDir(outputDir string, release *ReleaseSpec, o
t, err := template.New("output-dir").Parse(outputDirTemplate)
if err != nil {
return "", fmt.Errorf("parsing output-dir templmate")
return "", fmt.Errorf("parsing output-dir template")
}
buf := &bytes.Buffer{}
@ -3149,7 +3149,7 @@ func (st *HelmState) GenerateOutputFilePath(release *ReleaseSpec, outputFileTemp
t, err := template.New("output-file").Parse(outputFileTemplate)
if err != nil {
return "", fmt.Errorf("parsing output-file templmate")
return "", fmt.Errorf("parsing output-file template")
}
buf := &bytes.Buffer{}