diff --git a/scripts/download_hash.sh b/scripts/download_hash.sh
index 5edfff80f816dd8ac6cb0c9348059e94554388ae..ec4b16786af1dd01af77c8a7964f077b0e68881e 100644
--- a/scripts/download_hash.sh
+++ b/scripts/download_hash.sh
@@ -19,7 +19,7 @@ for download in ${DOWNLOADS}; do
     for version in ${VERSIONS}; do
       TARGET="${DOWNLOAD_DIR}/${download}-$version-$arch"
       if [ ! -f ${TARGET} ]; then
-        curl -s -o ${TARGET} "https://storage.googleapis.com/kubernetes-release/release/${version}/bin/linux/${arch}/${download}"
+        curl -L -f -S -s -o ${TARGET} "https://storage.googleapis.com/kubernetes-release/release/${version}/bin/linux/${arch}/${download}"
       fi
       echo -e "    ${version}: $(sha256sum ${TARGET} | awk '{print $1}')"
     done