Skip to content

Commit ba620bc

Browse files
committed
Downloading the binaries through a proxy if either HTTPS_PROXY or HTTP_PROXY environment variable is set.
closes #29
1 parent 706d8af commit ba620bc

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

build.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,16 @@ fn main() {
4545
let url = format!("{}/{}", GITHUB_URL, download_filename);
4646
let mut downloaded_bytes = Vec::new();
4747

48-
let _size = ureq::get(&url)
48+
let http_proxy = std::env::var("HTTPS_PROXY").or_else(|_| std::env::var("HTTP_PROXY"));
49+
let agent = if let Ok(proxy) = http_proxy {
50+
let proxy = ureq::Proxy::new(proxy).unwrap();
51+
ureq::AgentBuilder::new().proxy(proxy).build()
52+
} else {
53+
ureq::AgentBuilder::new().build()
54+
};
55+
56+
let _size = agent
57+
.get(&url)
4958
.call()
5059
.unwrap()
5160
.into_reader()

0 commit comments

Comments
 (0)