From 20a2e1f5ecd5f8d4bb97ca6cf295edb44ff73ca4 Mon Sep 17 00:00:00 2001 From: yxxhero Date: Wed, 18 Mar 2026 13:23:03 +0800 Subject: [PATCH] fix tests Signed-off-by: yxxhero --- pkg/helmexec/exec.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/helmexec/exec.go b/pkg/helmexec/exec.go index 0ef60b3e..20b59bda 100644 --- a/pkg/helmexec/exec.go +++ b/pkg/helmexec/exec.go @@ -1033,7 +1033,8 @@ func resolveOciChart(ociChart string) (ociChartURL, ociChartTag string) { func (helm *execer) ShowChart(chartPath string) (chart.Metadata, error) { var helmArgs = []string{"show", "chart", chartPath} - out, error := helm.exec(helmArgs, map[string]string{}, nil) + enableLiveOutput := false + out, error := helm.exec(helmArgs, map[string]string{}, &enableLiveOutput) if error != nil { return chart.Metadata{}, error }