nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 26 lines 1.1 kB view raw
1diff --git a/app/utils/generic.py b/app/utils/generic.py 2--- a/app/utils/generic.py 3+++ b/app/utils/generic.py 4@@ -255,7 +255,7 @@ 5 popen_args.extend(args) 6 p = subprocess.Popen(popen_args) 7 else: 8- popen_args = [executable_path] 9+ popen_args = ["@steam-run@/bin/steam-run", executable_path] 10 popen_args.extend(args) 11 12 if sys.platform == "win32": 13diff --git a/app/utils/steam/steamcmd/wrapper.py b/app/utils/steam/steamcmd/wrapper.py 14--- a/app/utils/steam/steamcmd/wrapper.py 15+++ b/app/utils/steam/steamcmd/wrapper.py 16@@ -316,8 +316,8 @@ 17 script_output.write("\n".join(script)) 18 runner.message(f"Compiled & using script: {script_path}") 19 runner.execute( 20- self.steamcmd, 21- [f'+runscript "{script_path}"'], 22+ "@steam-run@/bin/steam-run", 23+ [self.steamcmd, f'+runscript "{script_path}"'], 24 len(publishedfileids), 25 ) 26 else: