Skip to content

Commit

Permalink
Bug 1805306 - Allow retrieval of compressed config files in final-ver…
Browse files Browse the repository at this point in the history
…ification.sh r=jcristau DONTBUILD

Differential Revision: https://phabricator.services.mozilla.com/D164534
  • Loading branch information
gbrownmozilla committed Dec 13, 2022
1 parent 1242675 commit be271e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/update-verify/release/final-verification.sh
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ do
then
log " Downloading config file '${file}'"
cfg=$(mktemp)
curl -fL --retry 5 "${file}" > "$cfg"
curl -fL --retry 5 --compressed "${file}" > "$cfg"
if [ "$?" != 0 ]; then
log "Error downloading config file '${file}'"
BAD_FILE=1
Expand Down

0 comments on commit be271e9

Please sign in to comment.