Add -L to curl command

curl won't follow redirects without -L.  Since redirects are used by some who
have a private repository this breaks curl in those instances.  Adding -L fixes
the problem.
This commit is contained in:
Peter Ajamian 2021-07-16 17:31:54 +12:00
parent 64c74d621b
commit 606390af59
1 changed files with 1 additions and 1 deletions

View File

@ -884,7 +884,7 @@ establish_gpg_trust () {
# extract the filename from the url, use the temp dir just created
declare -g gpg_key_file="$gpg_tmp_dir/${gpg_key_url##*/}"
if ! curl -o "$gpg_key_file" --silent --show-error "$gpg_key_url"; then
if ! curl -L -o "$gpg_key_file" --silent --show-error "$gpg_key_url"; then
rm -rf "$gpg_tmp_dir"
exit_message "Error downloading the Rocky Linux signing key."
fi