From 099202cc438b7747419970435dcda096b21f4c4d Mon Sep 17 00:00:00 2001 From: pablomendezroyo Date: Mon, 15 Jul 2024 10:43:18 +0200 Subject: [PATCH] Grab content hashes depending on dnpname prettified --- scripts/dappnode_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dappnode_install.sh b/scripts/dappnode_install.sh index 331a252..123b21f 100755 --- a/scripts/dappnode_install.sh +++ b/scripts/dappnode_install.sh @@ -264,7 +264,7 @@ installExtraDpkg() { grabContentHashes() { if [ ! -f "${CONTENT_HASH_FILE}" ]; then for comp in "${CONTENT_HASH_PKGS[@]}"; do - CONTENT_HASH=$(eval "${SWGET}" https://github.com/dappnode/DAppNodePackage-"${comp}"/releases/latest/download/content-hash) + CONTENT_HASH=$(eval "${SWGET}" https://github.com/dappnode/DAppNodePackage-"${comp}"/releases/latest/download/content-hash_${comp}) if [ -z "$CONTENT_HASH" ]; then echo "ERROR! Failed to find content hash of ${comp}." 2>&1 | tee -a $LOGFILE exit 1