Skip to content

Commit 86c554f

Browse files
committed
Fix mx_util symbols being accessed through mx
1 parent b175ea0 commit 86c554f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
from zipfile import ZipFile
5656

5757
import mx
58+
import mx_util
5859
import mx_benchmark
5960
import mx_gate
6061
import mx_native
@@ -3069,7 +3070,7 @@ def run(self, args, env=None, cwd=None, **kwargs):
30693070
"-B",
30703071
"-S"
30713072
]
3072-
mx.ensure_dir_exists(cwd)
3073+
mx_util.ensure_dir_exists(cwd)
30733074

30743075
env = env.copy() if env else os.environ.copy()
30753076
env.update(self.subject.getBuildEnv())

0 commit comments

Comments
 (0)