From db415ea4fbd68d61843c4ae13dc8e756dbbb700b Mon Sep 17 00:00:00 2001 From: Marcin Kulik Date: Fri, 19 Jun 2026 17:48:26 +0200 Subject: [PATCH] Whitespace fix --- src/file_output.rs | 1 + 1 file changed, 1 insertion(+) 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())?;