From 9db88b16b12d68c67b28686b47b13db6533b0b4e Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Sat, 27 Jul 2024 05:23:30 -0300 Subject: [PATCH] Silence "git checkout" output --- libexec/portzap/commands/portzap-clone | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/portzap/commands/portzap-clone b/libexec/portzap/commands/portzap-clone index e4a0019..40becb6 100755 --- a/libexec/portzap/commands/portzap-clone +++ b/libexec/portzap/commands/portzap-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"