We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f126cb commit afa3907Copy full SHA for afa3907
src/bin/download.rs
@@ -71,10 +71,10 @@ fn main() {
71
Ok(cmd_output) => {
72
io::stdout()
73
.write_all(&cmd_output.stdout)
74
- .expect("could not cmd stdout to pipe.");
+ .expect("could not write cmd stdout to pipe.");
75
io::stderr()
76
.write_all(&cmd_output.stderr)
77
- .expect("could not cmd stderr to pipe.");
+ .expect("could not write cmd stderr to pipe.");
78
if !cmd_output.status.success() {
79
exit_with_status(1, &tmp_file_path);
80
}
@@ -92,7 +92,7 @@ fn main() {
92
exit_with_status(0, &tmp_file_path);
93
94
Err(e) => {
95
- eprintln!("could not copy to input file: {}", e);
+ eprintln!("could not copy downloaded input to input file: {}", e);
96
97
98
0 commit comments