mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-08-22 23:17:26 -04:00
fix execute with pipe
This commit is contained in:
parent
0cf920de13
commit
0ef432384d
2 changed files with 3 additions and 3 deletions
|
@ -67,7 +67,7 @@ func start_sandbox_windows(gate: Gate) -> void:
|
||||||
if not shared_libs.is_empty(): args += ["--gdext-libs-dir", shared_libs]
|
if not shared_libs.is_empty(): args += ["--gdext-libs-dir", shared_libs]
|
||||||
Debug.logclr(snbx_executable.path + " " + " ".join(args), Color.DIM_GRAY)
|
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_logger.start(pipe, gate)
|
||||||
snbx_pid = pipe["pid"]
|
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]
|
if not shared_libs.is_empty(): args += ["--gdext-libs-dir", shared_libs]
|
||||||
Debug.logclr(snbx_executable.path + " " + " ".join(args), Color.DIM_GRAY)
|
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_logger.start(pipe, gate)
|
||||||
snbx_pid = pipe["pid"]
|
snbx_pid = pipe["pid"]
|
||||||
|
|
||||||
|
|
2
godot
2
godot
|
@ -1 +1 @@
|
||||||
Subproject commit a3171b5f2fd2df41d3476b76b65942ad32e0b2e1
|
Subproject commit 93236943cc221532a905224ec42ac5691a9ce152
|
Loading…
Add table
Add a link
Reference in a new issue