From: Graham Knop Date: Wed, 31 Mar 2021 01:21:50 +0000 (+0200) Subject: update git clone urls X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f12b221f5f54b71a736fa013e311ab4a99dcfc9a;p=p5sagit%2FDistar.git update git clone urls --- diff --git a/README.md b/README.md index 6d5c0b0..26a1e21 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Distar - Additions to ExtUtils::MakeMaker for dist authors `maint/Makefile.PL.include`: - BEGIN { -e 'Distar' or system("git clone git://git.shadowcat.co.uk/p5sagit/Distar.git") } + BEGIN { -e 'Distar' or system qw(git clone https://github.com/p5sagit/Distar.git) } use lib 'Distar/lib'; use Distar 0.001; diff --git a/bin/distar-init b/bin/distar-init index d909e7c..53865fa 100755 --- a/bin/distar-init +++ b/bin/distar-init @@ -40,10 +40,7 @@ open my $mpl_maint, '>', "${project}/maint/Makefile.PL.include" or die "couldn't open maint/Makefile.PL.include: $!"; print $mpl_maint sprintf(<<'END', $author); -BEGIN { - -e 'Distar' - or system("git clone git://git.shadowcat.co.uk/p5sagit/Distar.git") -} +BEGIN { -e 'Distar' or system qw(git clone git://git.shadowcat.co.uk/p5sagit/Distar.git) } use lib 'Distar/lib'; use Distar; diff --git a/lib/Distar.pm b/lib/Distar.pm index e048045..2c0f670 100644 --- a/lib/Distar.pm +++ b/lib/Distar.pm @@ -356,7 +356,7 @@ F: F: - BEGIN { -e 'Distar' or system("git clone git://git.shadowcat.co.uk/p5sagit/Distar.git") } + BEGIN { -e 'Distar' or system qw(git clone https://github.com/p5sagit/Distar.git) } use lib 'Distar/lib'; use Distar 0.001;