From a7717a013556a8ef645917b82a561edee5cdf48d Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Tue, 9 Jul 2024 08:28:06 -0700 Subject: [PATCH] umu_run: don't join paths using a list --- umu/umu_run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/umu/umu_run.py b/umu/umu_run.py index ab44537ed..00b69ef69 100755 --- a/umu/umu_run.py +++ b/umu/umu_run.py @@ -359,7 +359,7 @@ def enable_steam_game_drive(env: dict[str, str]) -> dict[str, str]: if not libc: log.warning("libc.so could not be found") log.info("LD_LIBRARY_PATH=%s", os.environ.get("LD_LIBRARY_PATH") or "") - env["STEAM_RUNTIME_LIBRARY_PATH"] = ":".join(list(paths)) + env["STEAM_RUNTIME_LIBRARY_PATH"] = ":".join(paths) return env # Set the shared library paths of the system after finding libc.so @@ -367,7 +367,7 @@ def enable_steam_game_drive(env: dict[str, str]) -> dict[str, str]: if not Path(rtpath).is_symlink() and Path(rtpath, libc).is_file(): paths.add(rtpath) - env["STEAM_RUNTIME_LIBRARY_PATH"] = ":".join(list(paths)) + env["STEAM_RUNTIME_LIBRARY_PATH"] = ":".join(paths) return env