diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-03-17 18:36:39 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-03-17 18:36:39 -0400 |
| commit | 74f6aaa97c519080aaa54a8a934c3766bdb0835b (patch) | |
| tree | 6292407777f9810ac085d721ee813abb5b4b59e8 | |
| parent | 09ca0a8aca0fd74822e853013963a6090667ea74 (diff) | |
Fix path issue
| -rw-r--r-- | examples/tomodeps/tomodeps.tm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tomodeps/tomodeps.tm b/examples/tomodeps/tomodeps.tm index 279e5051..8149ff88 100644 --- a/examples/tomodeps/tomodeps.tm +++ b/examples/tomodeps/tomodeps.tm @@ -64,7 +64,7 @@ func _printable_name(dep:Dependency -> Text): when dep is Module(module): return "$(\x1b)[34;1m$module$(\x1b)[m" is File(f): - f = f:relative() + f = f:relative_to((.)) if f:exists(): return Text(f) else: |
