From 73c99b75a2e491070c3d06f1de23827dabd77c57 Mon Sep 17 00:00:00 2001 From: Caleb Connolly <caleb@postmarketos.org> Date: Sun, 27 Oct 2024 02:02:16 +0100 Subject: [PATCH] helpers: git: verbose curl Signed-off-by: Caleb Connolly <caleb@postmarketos.org> --- pmb/helpers/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmb/helpers/git.py b/pmb/helpers/git.py index 1271c656f..88fce7dc8 100644 --- a/pmb/helpers/git.py +++ b/pmb/helpers/git.py @@ -59,7 +59,7 @@ def clone(name_repo: str) -> None: tries = 3 while tries > 0: try: - pmb.helpers.run.user(command, output="stdout") + pmb.helpers.run.user(command, output="stdout", env={"GIT_CURL_VERBOSE": "1"}) break except RuntimeError as e: tries -= 1 -- GitLab