Skip to content

Commit

Permalink
umu_util: resolve the path
Browse files Browse the repository at this point in the history
  • Loading branch information
R1kaB3rN committed Sep 10, 2024
1 parent 84f4e88 commit 899d124
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion umu/umu_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -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("/")
}
Expand Down

0 comments on commit 899d124

Please sign in to comment.