Used the long form for all curl options.

This commit is contained in:
tcely 2024-11-24 06:34:28 -05:00 committed by GitHub
parent 163fcbeb2a
commit f4a88cf7fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -82,7 +82,7 @@ RUN decide_arch() { \
printf -- '%s\n' \
"Building for arch: ${2}|${ARCH}, downloading ${arg1} from: ${url}, expecting ${arg1} SHA256: ${expected}" && \
rm -rf "${file}" && \
curl --disable -SL --output "${file}" --clobber --dump-header - --no-progress-meter "${url}" && \
curl --disable --output "${file}" --clobber --location --dump-header - --no-progress-meter --url "${url}" && \
verify_download "${expected}" "${file}" ; \
} && \
export ARCH="$(decide_arch)" && \