Skip to content

Commit

Permalink
Merge branch 'fix-download-endpoint'
Browse files Browse the repository at this point in the history
  • Loading branch information
RCasatta committed Jan 4, 2024
2 parents 3a858ae + 75ccf49 commit 2df1994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ mod download {
let (file_or_url, tarball_bytes) = match std::env::var("BITCOIND_TARBALL_FILE") {
Err(_) => {
let download_endpoint = std::env::var("BITCOIND_DOWNLOAD_ENDPOINT")
.unwrap_or("https://bitcoincore.org/bin/".to_owned());
.unwrap_or("https://bitcoincore.org/bin".to_owned());

let url = format!(
"{}/bitcoin-core-{}/{}",
Expand Down

0 comments on commit 2df1994

Please sign in to comment.