Updated Readme and added it to release

master v0.01-beta
Hauke D 7 years ago
parent 8733c25cd3
commit 6e4cc6b934

@ -2,16 +2,16 @@
WebPerl WebPerl
======= =======
This is the main WebPerl repository. Welcome to WebPerl!
Please see the documentation on the main site **<http://webperl.zero-g.net>**: Please see the documentation on the main site:
\[ [Home](https://webperl.zero-g.net/index.html) - **<http://webperl.zero-g.net>**:
[Using WebPerl](https://webperl.zero-g.net/using.html) - [Using](https://webperl.zero-g.net/using.html),
[Building WebPerl](https://webperl.zero-g.net/building.html) - [Building](https://webperl.zero-g.net/building.html),
[Wiki](https://github.com/haukex/webperl/wiki) - [Notes](https://webperl.zero-g.net/notes.html)
[GitHub](https://github.com/haukex/webperl) -
[Notes](https://webperl.zero-g.net/notes.html) - As well as the
[Legal](https://webperl.zero-g.net/legal.html) \] [GitHub Wiki](https://github.com/haukex/webperl/wiki).
Author, Copyright, and License Author, Copyright, and License

@ -382,6 +382,8 @@ if (my $dist = $opts{dist}) {
my $zipfn = $basedir->file("$dist.zip"); my $zipfn = $basedir->file("$dist.zip");
my $zip = Archive::Zip->new(); my $zip = Archive::Zip->new();
$zip->addTree($basedir->subdir('web').'', dir($dist).''); $zip->addTree($basedir->subdir('web').'', dir($dist).'');
$zip->addFile($basedir->file($_).'', dir($dist)->file($_).'') for
qw/ README.md LICENSE_artistic.txt LICENSE_gpl.txt /;
$zip->writeToFileNamed("$zipfn") == AZ_OK or die "$zipfn write error"; $zip->writeToFileNamed("$zipfn") == AZ_OK or die "$zipfn write error";
say STDERR "# Wrote to $zipfn:"; say STDERR "# Wrote to $zipfn:";
my $unzip = Archive::Zip->new("$zipfn"); my $unzip = Archive::Zip->new("$zipfn");

Loading…
Cancel
Save