aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/event_dispatcher
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/event_dispatcher')
-rw-r--r--crates/shirabe/src/event_dispatcher/event_dispatcher.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/crates/shirabe/src/event_dispatcher/event_dispatcher.rs b/crates/shirabe/src/event_dispatcher/event_dispatcher.rs
index acc3138..3ef27f8 100644
--- a/crates/shirabe/src/event_dispatcher/event_dispatcher.rs
+++ b/crates/shirabe/src/event_dispatcher/event_dispatcher.rs
@@ -785,7 +785,9 @@ impl EventDispatcher {
return self.process.borrow_mut().execute_tty(exec, None);
}
- self.process.borrow_mut().execute(exec, (), None)
+ self.process
+ .borrow_mut()
+ .execute(exec, ProcessExecutor::FORWARD_OUTPUT, None)
}
fn get_php_exec_command(&self) -> anyhow::Result<String> {