]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/GitCredential.pm
www: drop --subject from "git send-email" instructions
[public-inbox.git] / lib / PublicInbox / GitCredential.pm
index b29780d67c54ce1405977e7660e3c8aca2390a1d..b18bba1ec32454b29a03339a54c2ed53b17c008c 100644 (file)
@@ -31,8 +31,12 @@ sub run ($$;$) {
        close $out_r or die "`git credential $op' failed: \$!=$! \$?=$?\n";
 }
 
-sub check_netrc ($) {
-       my ($self) = @_;
+sub check_netrc {
+       my ($self, $lei) = @_;
+
+       # n.b. lei doesn't load ~/.netrc by default, public-inbox-watch does,
+       # which may've been a mistake, but we have to live with it.
+       return if ($lei && !$lei->{opt}->{netrc});
 
        # part of the standard library, but distributions may split it out
        eval { require Net::Netrc };
@@ -56,6 +60,7 @@ sub fill {
                $self->{$1} = $2;
        }
        close $out_r or die "git credential fill failed: \$!=$! \$?=$?\n";
+       $self->{filled} = 1;
 }
 
 1;