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);