Hide logs also when calling subprocess

pull/147/head v0.9.0
Arijit Basu 3 years ago committed by Arijit Basu
parent c5b461f795
commit 57a0a49aae

@ -2080,11 +2080,13 @@ impl App {
}
fn call(mut self, command: Command) -> Result<Self> {
self.logs_hidden = true;
self.msg_out.push_back(MsgOut::Call(command));
Ok(self)
}
fn call_silently(mut self, command: Command) -> Result<Self> {
self.logs_hidden = true;
self.msg_out.push_back(MsgOut::CallSilently(command));
Ok(self)
}

Loading…
Cancel
Save