The Git Bash needs an additional directory in the PATH

This commit is contained in:
blinry 2021-01-12 10:11:30 +01:00
parent 8d333ce56a
commit c7445483dc

View file

@ -48,7 +48,8 @@ func run_async_thread(shell_command):
var env = {}
env["HOME"] = game.tmp_prefix
env["PATH"] = game.tmp_prefix+":/usr/bin:/bin"
env["PATH"] = game.tmp_prefix+":/usr/bin:/bin:/mingw64/bin/"
var hacky_command = ""
for variable in env: