Skip to content

Commit

Permalink
fix: use shell on windows to launch games
Browse files Browse the repository at this point in the history
  • Loading branch information
imLinguin committed Aug 16, 2024
1 parent b1d9792 commit 80269d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gogdl/launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,8 @@ def reap_children():


else:
process = subprocess.Popen(command, cwd=working_dir, env=environment)
process = subprocess.Popen(command, cwd=working_dir, env=environment,
shell=sys.platform=="win32")
status = process.wait()

sys.exit(status)
Expand Down

0 comments on commit 80269d2

Please sign in to comment.