From e2016bec6390930ad8aeded9861682d822fba110 Mon Sep 17 00:00:00 2001 From: Bitcoin Tools <156422466+bitcoin-tools@users.noreply.github.com> Date: Fri, 30 Aug 2024 08:02:35 -0400 Subject: [PATCH] fix(deps): use standard dependencies URL for FreeBSD --- nodebuilder | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/nodebuilder b/nodebuilder index b18cbc6b3..5f015a5a6 100755 --- a/nodebuilder +++ b/nodebuilder @@ -760,7 +760,7 @@ install_build_dependencies_emerge() install_build_dependencies_freebsd() { - readonly BUILD_DEPENDENCIES_URL="${FREEBSD_DEPENDENCIES_BASE_URL}/build_dependencies_freebsd.txt" + readonly BUILD_DEPENDENCIES_URL="${DEPENDENCIES_BASE_URL}/build_dependencies_freebsd.txt" command -v torsocks > /dev/null 2>&1 && dependencies=$(torsocks curl --fail --silent --show-error --location --retry 2 "${BUILD_DEPENDENCIES_URL}") || dependencies=$(curl --fail --silent --show-error --location --retry 5 "${BUILD_DEPENDENCIES_URL}") @@ -934,7 +934,7 @@ install_runtime_dependencies_emerge() install_runtime_dependencies_freebsd() { - readonly RUNTIME_DEPENDENCIES_URL="${FREEBSD_DEPENDENCIES_BASE_URL}/runtime_dependencies_freebsd.txt" + readonly RUNTIME_DEPENDENCIES_URL="${DEPENDENCIES_BASE_URL}/runtime_dependencies_freebsd.txt" command -v torsocks > /dev/null 2>&1 && dependencies=$(torsocks curl --fail --silent --show-error --location --retry 2 "${RUNTIME_DEPENDENCIES_URL}") || dependencies=$(curl --fail --silent --show-error --location --retry 5 "${RUNTIME_DEPENDENCIES_URL}") @@ -1351,7 +1351,6 @@ readonly BITCOIN_CORE_REPO='https://github.com/bitcoin/bitcoin' readonly NODEBUILDER_REPO='https://github.com/bitcoin-tools/nodebuilder' readonly NODEBUILDER_DEPENDENCIES_TAG='v1.7.1-beta' readonly DEPENDENCIES_BASE_URL="${NODEBUILDER_REPO}/raw/${NODEBUILDER_DEPENDENCIES_TAG}/resources/dependencies" -readonly FREEBSD_DEPENDENCIES_BASE_URL="${NODEBUILDER_REPO}/raw/master/resources/dependencies" case "${TARGET_KERNEL}" in Linux | FreeBSD)