mirror of
https://github.com/SpaceManiac/SpacemanDMM.git
synced 2025-12-23 05:36:47 +00:00
Tweak environment variable passed to extools
This commit is contained in:
parent
410e66d734
commit
266e4a8fe0
1 changed files with 3 additions and 1 deletions
|
|
@ -38,10 +38,12 @@ impl Launched {
|
|||
command
|
||||
.arg(dmb)
|
||||
.arg("-trusted")
|
||||
.env("SPACEMANDMM_LAUNCHING", format!("debug={}", debug))
|
||||
.stdin(Stdio::null())
|
||||
.stdout(Stdio::null())
|
||||
.stderr(Stdio::null());
|
||||
if debug {
|
||||
command.env("EXTOOLS_DEBUG", "1");
|
||||
}
|
||||
let mut child = command.spawn()?;
|
||||
output!(in seq, "[launched] Started: {:?}", command);
|
||||
let mutex = Arc::new(Mutex::new(State::Active));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue