From 1346dd4f34c63401482409626e52ec935b8fcb10 Mon Sep 17 00:00:00 2001 From: Antoine Kalmbach Date: Sun, 25 Oct 2020 12:38:28 +0200 Subject: [PATCH] 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. --- hubsrht/builds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hubsrht/builds.py b/hubsrht/builds.py index 4611b06..a75988e 100644 --- a/hubsrht/builds.py +++ b/hubsrht/builds.py @@ -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)