Skip to content

Commit 75ccf49

Browse files
committed
fix: rm extra forward slash in download_endpoint
1 parent ccff311 commit 75ccf49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ mod download {
9494
let (file_or_url, tarball_bytes) = match std::env::var("BITCOIND_TARBALL_FILE") {
9595
Err(_) => {
9696
let download_endpoint = std::env::var("BITCOIND_DOWNLOAD_ENDPOINT")
97-
.unwrap_or("https://bitcoincore.org/bin/".to_owned());
97+
.unwrap_or("https://bitcoincore.org/bin".to_owned());
9898

9999
let url = format!(
100100
"{}/bitcoin-core-{}/{}",

0 commit comments

Comments
 (0)