We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 034a456 + 6b99a7c commit 26c774fCopy full SHA for 26c774f
buildinfo
@@ -104,8 +104,7 @@ function download_archive_package () {
104
local target="$(get_archive_link "${1}" "$ext")"
105
if verify_archive_link "${target}"; then
106
echo "Downloading ${filename}" >&2
107
- curl -L "${target}" -o "${filename}" 2>/dev/null
108
- curl -L "${target}.sig" -o "${filename}.sig" 2>/dev/null
+ curl -L --remote-name-all "${target}" "${target}.sig" 2>/dev/null
109
if gpg --keyring /etc/pacman.d/gnupg/pubring.gpg --verify "${filename}.sig" "${filename}" 2>/dev/null; then
110
mv "${filename}" "${cachedir}/"
111
echo "${2}/${filename}"
0 commit comments