
The Git::Mail::Address file added in bd869f67b9
("send-email: add and
use a local copy of Mail::Address", 2018-01-05) had the executable bit
set. That bit should not be set for *.pm files. It breaks nothing but
it is redundant and confusing as none of the other files have it and
these files are never executed as stand-alone programs.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
25 lines
424 B
Perl
25 lines
424 B
Perl
package Git::Mail::Address;
|
|
use 5.008;
|
|
use strict;
|
|
use warnings;
|
|
|
|
=head1 NAME
|
|
|
|
Git::Mail::Address - Wrapper for the L<Mail::Address> module, in case it's not installed
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
This module is only intended to be used for code shipping in the
|
|
C<git.git> repository. Use it for anything else at your peril!
|
|
|
|
=cut
|
|
|
|
eval {
|
|
require Mail::Address;
|
|
1;
|
|
} or do {
|
|
require Git::FromCPAN::Mail::Address;
|
|
};
|
|
|
|
1;
|