Merge 1659e2b563 into sapling-pr-archive-bolinfest

This commit is contained in:
Michael Bolin
2026-02-22 18:36:34 -08:00
committed by GitHub

View File

@@ -166,6 +166,10 @@ impl ZshExecBridge {
})?;
let mut cmd = tokio::process::Command::new(&command[0]);
#[cfg(unix)]
if let Some(arg0) = &req.arg0 {
cmd.arg0(arg0);
}
if command.len() > 1 {
cmd.args(&command[1..]);
}