diff --git a/app/scripts/sandbox/sandbox_manager.gd b/app/scripts/sandbox/sandbox_manager.gd index 9d1c732..c86bf6c 100644 --- a/app/scripts/sandbox/sandbox_manager.gd +++ b/app/scripts/sandbox/sandbox_manager.gd @@ -67,7 +67,7 @@ func start_sandbox_windows(gate: Gate) -> void: if not shared_libs.is_empty(): args += ["--gdext-libs-dir", shared_libs] Debug.logclr(snbx_executable.path + " " + " ".join(args), Color.DIM_GRAY) - var pipe = OS.execute_with_pipe(snbx_executable.start, args, false) + var pipe = OS.execute_with_pipe(snbx_executable.path, args, false) snbx_logger.start(pipe, gate) snbx_pid = pipe["pid"] @@ -88,7 +88,7 @@ func start_sandbox_macos(gate: Gate) -> void: if not shared_libs.is_empty(): args += ["--gdext-libs-dir", shared_libs] Debug.logclr(snbx_executable.path + " " + " ".join(args), Color.DIM_GRAY) - var pipe = OS.execute_with_pipe(snbx_executable.start, args, false) + var pipe = OS.execute_with_pipe(snbx_executable.path, args, false) snbx_logger.start(pipe, gate) snbx_pid = pipe["pid"] diff --git a/godot b/godot index a3171b5..9323694 160000 --- a/godot +++ b/godot @@ -1 +1 @@ -Subproject commit a3171b5f2fd2df41d3476b76b65942ad32e0b2e1 +Subproject commit 93236943cc221532a905224ec42ac5691a9ce152