Skip to content

Commit 9ee99be

Browse files
committed
Fix mx_util symbols being accessed through mx
1 parent c1900b4 commit 9ee99be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mx.truffleruby/mx_truffleruby.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
import sys
1616

1717
import mx
18+
import mx_util
1819
import mx_gate
1920
import mx_sdk
2021
import mx_sdk_vm
@@ -98,7 +99,7 @@ def needsBuild(self, newestInput):
9899
return False, 'up to date'
99100

100101
def build(self):
101-
mx.ensure_dir_exists(self.subject.get_output_root())
102+
mx_util.ensure_dir_exists(self.subject.get_output_root())
102103
for result, _, _ in self.subject.launchers():
103104
with open(result, "w") as f:
104105
f.write(self.contents(result))

0 commit comments

Comments
 (0)