Skip to content

Commit cad7fe1

Browse files
authored
Merge pull request #1792 from minrk/helm-help-capture
capture helm help output
2 parents e68855c + 943f1d4 commit cad7fe1

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)