From c7445483dce56c59ffe71265aa7af67f1129203e Mon Sep 17 00:00:00 2001 From: blinry Date: Tue, 12 Jan 2021 10:11:30 +0100 Subject: [PATCH] The Git Bash needs an additional directory in the PATH --- scenes/shell.gd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scenes/shell.gd b/scenes/shell.gd index 0788214..31c6d1e 100644 --- a/scenes/shell.gd +++ b/scenes/shell.gd @@ -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: