Use -sS instead of --no-progress-meter when curling mbox downloads

Seems like curl in Debian images is too old to have support for
--no-progress-meter introduced in curl 7.67. This can be done in a
forward compatible way by using -sS.

-s will silence output in general, but -S (--show-error) will unsilence any errors.
This commit is contained in:
Antoine Kalmbach 2020-10-25 12:38:28 +02:00 committed by Drew DeVault
parent ba9573e7da
commit 1346dd4f34
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ def submit_patchset(ml, payload):
git config --global user.name 'builds.sr.ht'
git config --global user.email builds@sr.ht
cd {repo.name}
curl --no-progress-meter {ml.url()}/patches/{payload["id"]}/mbox >/tmp/{payload["id"]}.patch
curl -sS {ml.url()}/patches/{payload["id"]}/mbox >/tmp/{payload["id"]}.patch
git am -3 /tmp/{payload["id"]}.patch"""
})
manifest.tasks.insert(0, task)