diff --git a/scripts/packages/helpers.sh b/scripts/packages/helpers.sh
index 2917338aeb8f3df4ce7ec9742744d09c4456b4c1..eefd573f99ce78d4e7520103edcba7a5159ead61 100644
--- a/scripts/packages/helpers.sh
+++ b/scripts/packages/helpers.sh
@@ -5,6 +5,8 @@ source scripts/utils.sh
 function archive_doesnt_exist() {
   local package_url="${1}"
 
+  echoinfo "Downloading archive at ${package_url}..."
+
   status=$(curl -I --silent --retry 3 --output /dev/null -w "%{http_code}" "${package_url}")
 
   if [[ "${status}" = "200" ]]; then