summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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" );
}
}