Skip to content

Commit 943f1d4

Browse files
committed
capture helm help output
reduces noise during helm check
1 parent a1c158c commit 943f1d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deploy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def setup_auth_gcloud(release, cluster=None):
126126

127127
def assert_helm_v3():
128128
"""Asserts helm is available at all and of the required major version."""
129-
c = subprocess.run(["helm", "--help"])
129+
c = subprocess.run(["helm", "--help"], capture_output=True)
130130
assert c.returncode == 0, "Helm 3 is required, but helm doesn't seem to be installed!"
131131

132132
c = subprocess.run(

0 commit comments

Comments
 (0)