Skip to content

Commit 9570875

Browse files
authored
chore(internal): rm --client flag from helm version cmd check (#981)
* because it is no more supported with helm 4
1 parent a1b7721 commit 9570875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/app/helm_helpers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func getChartInfo(chartName, chartVersion string) (*ChartInfo, error) {
7373

7474
// getHelmClientVersion returns Helm client Version
7575
func getHelmVersion() string {
76-
cmd := helmCmd([]string{"version", "--short", "--client"}, "Checking Helm version")
76+
cmd := helmCmd([]string{"version", "--short"}, "Checking Helm version")
7777

7878
res, err := cmd.Exec()
7979
if err != nil {

0 commit comments

Comments
 (0)