Skip to content

Commit b853dd6

Browse files
committed
[GR-51531] Fix accesses to indirect mx imports
PullRequest: truffleruby/4151
2 parents 35e142c + 9ee99be commit b853dd6

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)