mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-08-18 12:16:33 -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]
|
||||
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"]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue