diff --git a/install/install_quilibrium_service.sh b/install/install_quilibrium_service.sh index 3f8c53f..5b20523 100644 --- a/install/install_quilibrium_service.sh +++ b/install/install_quilibrium_service.sh @@ -167,6 +167,9 @@ sleep 1 # Add a 1-second delay # Get the current OS and architecture OS_ARCH=$(get_os_arch) +# Base URL for the Quilibrium releases +BASE_URL="https://releases.quilibrium.com/release" + # Fetch the list of files from the release page FILES=$(curl -s $BASE_URL | grep -oE "qclient-[0-9]+\.[0-9]+\.[0-9]+-${OS_ARCH}(\.dgst)?(\.sig\.[0-9]+)?") diff --git a/update/update.sh b/update/update.sh index 435cd88..1e7886c 100644 --- a/update/update.sh +++ b/update/update.sh @@ -122,6 +122,9 @@ fi # Get the current OS and architecture OS_ARCH=$(get_os_arch) +# Base URL for the Quilibrium releases +BASE_URL="https://releases.quilibrium.com/release" + # Fetch the list of files from the release page FILES=$(curl -s $BASE_URL | grep -oE "qclient-[0-9]+\.[0-9]+\.[0-9]+-${OS_ARCH}(\.dgst)?(\.sig\.[0-9]+)?")