Log the server response headers

This commit is contained in:
tcely 2024-11-24 05:47:40 -05:00 committed by GitHub
parent 3c5641b542
commit 6b807a8654
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -81,7 +81,7 @@ RUN decide_arch() { \
url="$(decide_url "${1}" "${2}")" ; \
printf -- '%s\n' \
"Building for arch: ${2}|${ARCH}, downloading ${arg1} from: ${url}, expecting ${arg1} SHA256: ${expected}" && \
curl --disable -sSL --output "${file}" "${url}" && \
curl --disable -sSL --output "${file}" --dump-header - "${url}" && \
verify_download "${expected}" "${file}" ; \
} && \
export ARCH="$(decide_arch)" && \