summaryrefslogtreecommitdiff
path: root/bin/git-push-all
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2016-12-26 20:08:33 +0000
committerSean Whitton <spwhitton@spwhitton.name>2016-12-26 20:08:33 +0000
commit69ccc3b53d6b665c08e949ed2f0b6c05ca3e9d33 (patch)
tree5607f20cafd964ae6f25c1d4dae7bb4f1d8ba122 /bin/git-push-all
parent852cba47865b238a942569c2f9fc3bbc71021206 (diff)
downloaddotfiles-69ccc3b53d6b665c08e949ed2f0b6c05ca3e9d33.tar.gz
don't complain about unpushed archive/debian/*
Diffstat (limited to 'bin/git-push-all')
-rwxr-xr-xbin/git-push-all2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/git-push-all b/bin/git-push-all
index 9f134466..1dae278e 100755
--- a/bin/git-push-all
+++ b/bin/git-push-all
@@ -97,7 +97,7 @@ foreach my $remote ( keys %pushes ) {
# TODO if this turns out to be slow, split out into a script run
# weekly as part of ~/bin/sysmaint
-my @tags = $git->tag;
+my @tags = grep { !(m|archive/debian/\S+|) } $git->tag;
my @remotes = $git->remote;
my @pushed_tags;