From 301107be6ca4fa10390b00174daac687cbc8c69e Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Mon, 23 Feb 2026 14:56:37 +0100 Subject: [PATCH] add context to background nc --- installer/src/util.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/installer/src/util.rs b/installer/src/util.rs index ad22f1d..0a11223 100644 --- a/installer/src/util.rs +++ b/installer/src/util.rs @@ -147,7 +147,10 @@ pub async fn telnet_send_file( drop(stream); } - handle.await?? + handle + .await + .context("background nc writer failed")? + .context("background nc writer failed")? }; let checksum = md5::compute(payload);