Skip to content

Commit

Permalink
fix: better error messages in download script
Browse files Browse the repository at this point in the history
  • Loading branch information
fspoettel committed Oct 17, 2022
1 parent 8f126cb commit afa3907
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/bin/download.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ fn main() {
Ok(cmd_output) => {
io::stdout()
.write_all(&cmd_output.stdout)
.expect("could not cmd stdout to pipe.");
.expect("could not write cmd stdout to pipe.");
io::stderr()
.write_all(&cmd_output.stderr)
.expect("could not cmd stderr to pipe.");
.expect("could not write cmd stderr to pipe.");
if !cmd_output.status.success() {
exit_with_status(1, &tmp_file_path);
}
Expand All @@ -92,7 +92,7 @@ fn main() {
exit_with_status(0, &tmp_file_path);
}
Err(e) => {
eprintln!("could not copy to input file: {}", e);
eprintln!("could not copy downloaded input to input file: {}", e);
exit_with_status(1, &tmp_file_path);
}
}
Expand Down

0 comments on commit afa3907

Please sign in to comment.