From 23e2fada83c5e50590607f11ce6e427dd4f0cee0 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Tue, 20 Dec 2016 03:14:58 +0100 Subject: [PATCH] Unify push in one command --- bin/git-pot | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bin/git-pot b/bin/git-pot index f6074f7..2d7b0eb 100755 --- a/bin/git-pot +++ b/bin/git-pot @@ -26,9 +26,7 @@ step "Execute pre-push auto-hook" git autohook pre-push step "Execute pushes..." -for ref in ${REQUIRED}; do - git push origin ${ref} -done +git push origin ${REQUIRED} "$@" step "Execute post-push auto-hook" git autohook post-push