From 899d124895230855d28c1cfd3708eb9a61c6b982 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Mon, 9 Sep 2024 22:10:29 -0700 Subject: [PATCH] umu_util: resolve the path --- umu/umu_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umu/umu_util.py b/umu/umu_util.py index 90b9193f..3ed6a8c1 100644 --- a/umu/umu_util.py +++ b/umu/umu_util.py @@ -44,7 +44,7 @@ def get_library_paths() -> set[str]: ) as proc: stdout, _ = proc.communicate() library_paths |= { - line[: line.rfind("/")] + os.path.realpath(line[: line.rfind("/")]) for line in stdout.split() if line.startswith("/") }