summaryrefslogtreecommitdiff
path: root/bin/git-push-all
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2016-06-27 13:48:25 +0900
committerSean Whitton <spwhitton@spwhitton.name>2016-06-27 13:48:25 +0900
commit01abb69ab975fc8731ba9799b5107837d2b55778 (patch)
tree7450b54422557781c6e1440b880e839373b7a3d3 /bin/git-push-all
parent514b9d638ce29de68e45562c5dc91a9e1b543531 (diff)
downloaddotfiles-01abb69ab975fc8731ba9799b5107837d2b55778.tar.gz
don't use git wrapper for push command
Ensures output printed to terminal.
Diffstat (limited to 'bin/git-push-all')
-rwxr-xr-xbin/git-push-all4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/git-push-all b/bin/git-push-all
index c9a10d57..c782082a 100755
--- a/bin/git-push-all
+++ b/bin/git-push-all
@@ -67,13 +67,13 @@ my @remotes = $git->remote;
if ( defined $pushDefault ) {
# mode one: assume that there are read-only remotes
foreach my $remote ( @pushRemotes ) {
- $git->push("--follow-tags", $remote, ":")
+ system "git push --follow-tags $remote :"
unless ( $remote eq "dgit" );
}
} else {
# mode two: assume we can write to all remotes
foreach my $remote ( @remotes ) {
- $git->push("--tags", $remote, ":")
+ system "git push --tags $remote :"
unless ( $remote eq "dgit" );
}
}