Skip to content

Commit

Permalink
[xtask] Small fix to error message (#5874)
Browse files Browse the repository at this point in the history
  • Loading branch information
karencfv authored Jun 10, 2024
1 parent cb0464d commit a076482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev-tools/xtask/src/download.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ pub async fn run_cmd(args: DownloadArgs) -> Result<()> {
Target::TransceiverControl => {
downloader.download_transceiver_control().await
}
}.context("Failed to download {target:?}")?;
}.context(format!("Failed to download {target:?}"))?;

info!(&log, "Download complete");
Ok(())
Expand Down

0 comments on commit a076482

Please sign in to comment.