Skip to content

Commit ffced1e

Browse files
committed
Fix numpy benchmark suite running
1 parent 3c4d840 commit ffced1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mx.graalpython/mx_graalpython_python_benchmarks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ def _vmRun(self, vm, workdir, command, benchmarks, bmSuiteArgs):
627627
mx.run(["git", "config", "user.email", "[email protected]"], cwd=npdir)
628628
mx.run(["git", "config", "user.name", "YourName"], cwd=npdir)
629629
mx.run(["git", "commit", "--allow-empty", "-m", "init"], cwd=npdir)
630-
mx.run(["git", "branch", self.VERSION], cwd=npdir)
630+
mx.run(["git", "branch", f"v{self.VERSION}"], cwd=npdir)
631631
mx.run(["git", "branch", "main"], cwd=npdir, nonZeroIsFatal=False)
632632
mx.run(["git", "branch", "master"], cwd=npdir, nonZeroIsFatal=False)
633633

0 commit comments

Comments
 (0)