Skip to content

Commit

Permalink
Merge pull request #107 from LovingMelody/update-nix-package
Browse files Browse the repository at this point in the history
Remove incorrect libc check
  • Loading branch information
R1kaB3rN authored May 22, 2024
2 parents deee504 + 655f870 commit 389e6d7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions umu/umu_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,7 @@ def enable_steam_game_drive(env: dict[str, str]) -> dict[str, str]:
paths.add(env["STEAM_COMPAT_INSTALL_PATH"])

for path in steamrt_paths:
if not Path(path).is_symlink() and Path(path, libc).is_file():
paths.add(path)
paths.add(path)
env["STEAM_RUNTIME_LIBRARY_PATH"] = ":".join(list(paths))

return env
Expand Down

0 comments on commit 389e6d7

Please sign in to comment.