Merge pull request #32 from yxxhero/fix_typo_state

(fix) typo in state.go
This commit is contained in:
Quan TRAN 2022-04-11 23:47:59 +02:00 committed by GitHub
commit c7b23a67cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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{}