From 16ca9b6c68efb03f1a844aabaa2712cb2e3b1a39 Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Sat, 27 Jul 2024 06:09:53 -0300 Subject: [PATCH] Silence "git checkout" output --- libexec/sourcezap/commands/sourcezap-clone | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/sourcezap/commands/sourcezap-clone b/libexec/sourcezap/commands/sourcezap-clone index 05cab45..0745236 100755 --- a/libexec/sourcezap/commands/sourcezap-clone +++ b/libexec/sourcezap/commands/sourcezap-clone @@ -35,5 +35,5 @@ fi "${git}" clone "${giturl}" "${gitdir}" cd "${gitdir}" "${git}" config core.filemode off -"${git}" checkout -t origin/"${branch}" || true +"${git}" checkout -t origin/"${branch}" > /dev/null 2>&1 || true printok "clone complete"