summaryrefslogtreecommitdiff
path: root/perl5
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2020-03-27 12:06:00 -0700
committerSean Whitton <spwhitton@spwhitton.name>2020-03-27 12:06:00 -0700
commit44b7e6037ec4466a0466805a040f6bd795b87b2d (patch)
tree15e5fa7abf861e0832cf34ecb8e496aab6bd14c0 /perl5
parentc483bc3697db81378ec3c73460202b9c44e9766a (diff)
downloaddotfiles-44b7e6037ec4466a0466805a040f6bd795b87b2d.tar.gz
don't consider tags pushed to develacc as pushed
Diffstat (limited to 'perl5')
-rw-r--r--perl5/Local/Util/Git.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl5/Local/Util/Git.pm b/perl5/Local/Util/Git.pm
index 55e65eb8..c231611b 100644
--- a/perl5/Local/Util/Git.pm
+++ b/perl5/Local/Util/Git.pm
@@ -63,7 +63,7 @@ sub unpushed_tags {
chomp(my @remotes = `$git remote`);
die "failed to get git remotes" unless ($? == 0);
- @remotes = grep !/\Adgit\z/, @remotes;
+ @remotes = grep !/\A(dgit|develacc)\z/, @remotes;
my %pushed_tags;
foreach my $remote (@remotes) {