Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit 8818182

Browse files
author
aiordache
committed
cleanup and small fixes
Signed-off-by: aiordache <[email protected]>
1 parent 17335ae commit 8818182

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

compose/internal/helm/chart.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,10 @@ home:
3939
Name string
4040
}
4141
var chartData bytes.Buffer
42-
_ = t.Execute(&chartData, ChartDetails{Name: name})
43-
42+
err = t.Execute(&chartData, ChartDetails{Name: name})
43+
if err != nil {
44+
return nil, err
45+
}
4446
files = append(files, &loader.BufferedFile{
4547
Name: "Chart.yaml",
4648
Data: chartData.Bytes(),

0 commit comments

Comments
 (0)