aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index c56cb91..18ce199 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -183,18 +183,24 @@ fn fetch_source(url: &str) -> io::Result<proto::Source> {
proc.stdin(Stdio::null());
proc.stdout(Stdio::piped());
- proc.stderr(Stdio::null());
- proc.arg("--fail");
+ proc.stderr(Stdio::piped());
+ proc.arg("-gsSfL");
proc.arg("--fail-early");
+ proc.arg("--max-time");
+ proc.arg("10");
+ proc.arg("--max-filesize");
+ proc.arg("1M");
proc.arg("--");
proc.arg(url);
let out = proc.output()?;
if !out.status.success() {
+ let msg = String::from_utf8_lossy(&out.stderr);
+ let msg = msg.replace('\n', "; ");
return Err(io::Error::new(
io::ErrorKind::Other,
- format!("Failed to download [{}]", url),
+ msg,
));
}