Skip to content

Commit 141e0cb

Browse files
committed
Fix: graalvm_jdk breaks if mx runs with -v
1 parent 4561c3f commit 141e0cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -962,7 +962,7 @@ def graalvm_jdk(enterprise=False):
962962
if not DISABLE_REBUILD:
963963
run_mx(mx_args + ["build", "--dep", f"GRAALVM_{edition}JAVA{jdk_major_version}"], env={**os.environ, **LATEST_JAVA_HOME})
964964
out = mx.OutputCapture()
965-
run_mx(mx_args + ["graalvm-home"], out=out)
965+
run_mx(["--quiet"] + mx_args + ["graalvm-home"], out=out)
966966
return out.data.splitlines()[-1].strip()
967967

968968
def get_maven_cache():

0 commit comments

Comments
 (0)