[Bps-public-commit] BPS git mailer tools branch, master, updated. a5fd116730117b7af7de0cb16b893d3db04d5c62
Kevin Falcone
falcone at bestpractical.com
Wed Jul 1 15:28:24 EDT 2009
The branch, master has been updated
via a5fd116730117b7af7de0cb16b893d3db04d5c62 (commit)
via 4c2bfb8c9949588ebd89bb4b328143960d904d89 (commit)
from 84ac8c0550e0be2c850f1950d9336de0e7e19cbb (commit)
Summary of changes:
authors.txt | 1 +
create-github-repo | 3 ++-
2 files changed, 3 insertions(+), 1 deletions(-)
- Log -----------------------------------------------------------------
commit 4c2bfb8c9949588ebd89bb4b328143960d904d89
Author: Kevin Falcone <falcone at bestpractical.com>
Date: Wed Jul 1 15:27:52 2009 -0400
add Fayland
diff --git a/authors.txt b/authors.txt
index 7d532ad..6607832 100644
--- a/authors.txt
+++ b/authors.txt
@@ -24,6 +24,7 @@ evdb = Edmund von der Burg <evdb at ecclestoad.co.uk>
ewhipple = Edgar Whipple <jifty at misterwhipple.com>
ewilhelm = Eric Wilhelm <ewilhelm at cpan.org>
falcone = Kevin Falcone <falcone at bestpractical.com>
+fayland = Fayland <fayland at gmail.com>
gaal = Gaal Yahas <gaal at forum2.org>
gaal at forum2.org = Gaal Yahas <gaal at forum2.org>
glasser = David Glasser <glasser at bestpractical.com>
commit a5fd116730117b7af7de0cb16b893d3db04d5c62
Author: Kevin Falcone <falcone at bestpractical.com>
Date: Wed Jul 1 15:27:59 2009 -0400
make the repo lowercased so it matches up with our automated push
diff --git a/create-github-repo b/create-github-repo
index aece22c..4a9582b 100755
--- a/create-github-repo
+++ b/create-github-repo
@@ -1,6 +1,7 @@
#!/usr/bin/env perl
my $dist = shift @ARGV || die "no dist specified";
+my $lcdist = lc $dist;
use WWW::Mechanize;
my $mech = WWW::Mechanize->new();
@@ -12,6 +13,6 @@ use WWW::Mechanize;
$mech->get('https://github.com/repositories/new');
$mech->submit_form(
form_number => 3,
- fields => { 'repository[name]' => $dist, 'repository[homepage]' => 'http://search.cpan.org/dist/'.$dist },
+ fields => { 'repository[name]' => $lcdist, 'repository[homepage]' => 'http://search.cpan.org/dist/'.$dist },
);
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list