summaryrefslogtreecommitdiff
path: root/bin/git-push-all
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2016-12-26 20:08:43 +0000
committerSean Whitton <spwhitton@spwhitton.name>2016-12-26 20:08:51 +0000
commit53604264966db9b97e76dbcfa93c9c3bbcdca988 (patch)
treedd8c290fb5e0b2ee53b990c3110b2652e2c32ac4 /bin/git-push-all
parent69ccc3b53d6b665c08e949ed2f0b6c05ca3e9d33 (diff)
downloaddotfiles-53604264966db9b97e76dbcfa93c9c3bbcdca988.tar.gz
improve unpushed tags output
Diffstat (limited to 'bin/git-push-all')
-rwxr-xr-xbin/git-push-all1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/git-push-all b/bin/git-push-all
index 1dae278e..59cab4a2 100755
--- a/bin/git-push-all
+++ b/bin/git-push-all
@@ -115,5 +115,6 @@ my @unpushed_tags = array_minus ( @tags, @pushed_tags );
if ( scalar @unpushed_tags > 0 ) {
print "E: the following tags have not been pushed to any remote:\n";
print join(", ", @unpushed_tags);
+ print "\n";
exit 1;
}