Skip to content

Commit

Permalink
fix: rm extra forward slash in download_endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
evanlinjin committed Oct 9, 2023
1 parent ccff311 commit 75ccf49
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 75ccf49

Please sign in to comment.