Skip to content

Commit

Permalink
Downloading the binaries through a proxy if either HTTPS_PROXY or HTT…
Browse files Browse the repository at this point in the history
…P_PROXY environment variable is set.

closes #29
  • Loading branch information
ulrichard committed Jan 26, 2022
1 parent 706d8af commit bae8032
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,17 @@ fn main() {
let url = format!("{}/{}", GITHUB_URL, download_filename);
let mut downloaded_bytes = Vec::new();

let _size = ureq::get(&url)
let http_proxy = std::env::var("HTTPS_PROXY").or_else(|_| std::env::var("HTTP_PROXY"));
let agent = if let Ok(proxy) = http_proxy {
let proxy = ureq::Proxy::new(proxy).unwrap();
ureq::AgentBuilder::new()
.proxy(proxy)
.build()
} else {
ureq::AgentBuilder::new().build()
};

let _size = agent.get(&url)
.call()
.unwrap()
.into_reader()
Expand Down

0 comments on commit bae8032

Please sign in to comment.