Skip to content

Commit b626558

Browse files
committed
fix checking helm version
1 parent 2f993a1 commit b626558

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ jobs:
1414

1515
- uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1
1616

17-
- name: helm version
18-
run: helm version
19-
2017
- uses: actions/checkout@v6
2118

2219
- name: Add Helm repos

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ check-helm:
314314
echo "Missing helm command" ; \
315315
exit 2 ; \
316316
fi
317-
@HELM_VERSION=$$($(HELM) version --short --client 2>/dev/null || echo "unknown") ; \
317+
@HELM_VERSION=$$($(HELM) version --short 2>/dev/null) ; \
318318
case "$$HELM_VERSION" in \
319319
v3*) \
320320
;; \

0 commit comments

Comments
 (0)