From 66a1a9ff1cb1d52902d8d9bfe9ac87ee54790f66 Mon Sep 17 00:00:00 2001 From: Niki Roo Date: Sat, 27 Sep 2025 12:47:15 +0200 Subject: [PATCH] fix dos --- gamiki/support/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gamiki/support/commands.py b/gamiki/support/commands.py index 262e6b7..ff15e24 100644 --- a/gamiki/support/commands.py +++ b/gamiki/support/commands.py @@ -47,7 +47,7 @@ def dosbox(dir: PurePath, link: PurePath, opt: str = None) -> int: cmd.append(start.as_posix()) - return run(cmd, cwd=dir, env=env).returncode + return run(cmd, cwd=dir).returncode def wine(dir: PurePath, link: PurePath, opt: str = None) -> int: if (opt): -- 2.27.0