We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
libpythonvm_build_args
1 parent 90df704 commit 607b9efCopy full SHA for 607b9ef
mx.graalpython/mx_graalpython.py
@@ -290,7 +290,11 @@ def libpythonvm_build_args():
290
):
291
vc = SUITE.vc
292
commit = str(vc.tip(SUITE.dir)).strip()
293
- branch = str(vc.active_branch(SUITE.dir)).strip()
+ try:
294
+ branch = str(vc.active_branch(SUITE.dir)).strip()
295
+ except Exception:
296
+ branch = "master"
297
+
298
if shutil.which("artifact_download"):
299
# This is always available in the GraalPy CI
300
profile = "cached_profile.iprof.gz"
0 commit comments