update git clone urls
Graham Knop [Wed, 31 Mar 2021 01:21:50 +0000 (03:21 +0200)]
README.md
bin/distar-init
lib/Distar.pm

index 6d5c0b0..26a1e21 100644 (file)
--- 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;
 
index d909e7c..53865fa 100755 (executable)
@@ -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;
 
index e048045..2c0f670 100644 (file)
@@ -356,7 +356,7 @@ F<Makefile.PL>:
 
 F<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;