From aafb3aaec1528a74b009b6f0e7c5272d027fc6e4 Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Sat, 20 Apr 2024 10:53:58 -0300 Subject: [PATCH] Readd verbose output in 'portzap pull' --- libexec/portzap/portzap-pull | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/portzap/portzap-pull b/libexec/portzap/portzap-pull index 0b3b9ba..d5c949d 100755 --- a/libexec/portzap/portzap-pull +++ b/libexec/portzap/portzap-pull @@ -50,11 +50,11 @@ if [ ! -e "${gitdir}/.git" ]; then exit 1 fi -umask ${mode} cd "${gitdir}" remote=$(gitexec "remote" | head -n1) cbranch=$(gitexec "branch --show-current") if [ "${cbranch}" != "${branch}" ]; then change_branch "${remote}" "${branch}" fi +set -x gitexec "pull --rebase ${remote} ${branch}"