From 74f6aaa97c519080aaa54a8a934c3766bdb0835b Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 17 Mar 2025 18:36:39 -0400 Subject: [PATCH] Fix path issue --- examples/tomodeps/tomodeps.tm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tomodeps/tomodeps.tm b/examples/tomodeps/tomodeps.tm index 279e505..8149ff8 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: