diff --git a/src/file_output.rs b/src/file_output.rs index df34529..376bc7f 100644 --- a/src/file_output.rs +++ b/src/file_output.rs @@ -191,6 +191,7 @@ async fn send_command( make_command: impl FnOnce(oneshot::Sender>) -> Command, ) -> io::Result<()> { let (result_tx, result_rx) = oneshot::channel(); + commands .send(make_command(result_tx)) .map_err(|_| worker_failed())?;