Removes silent fail from retrieve-release-data() (#200)

This commit is contained in:
Mathew Savage 2023-05-17 05:19:28 +01:00 committed by GitHub
parent 105ebbf270
commit ac1920f8c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -124,7 +124,7 @@ function retrieve-release-data() {
*) url="$base_url-ga.tsv" ;;
esac
curl -s -f --compressed -L "${url}" -o "${cache_file}"
curl -sS --compressed -L "${url}" -o "${cache_file}"
fi
}