This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Try reducing the risk of blind copy-paste errors
authorFlorian Ragwitz <rafl@debian.org>
Sun, 20 Mar 2011 20:40:32 +0000 (21:40 +0100)
committerFlorian Ragwitz <rafl@debian.org>
Sun, 20 Mar 2011 20:40:45 +0000 (21:40 +0100)
Porting/release_managers_guide.pod

index f1fc6ed..62691c5 100644 (file)
@@ -391,14 +391,14 @@ Finalize the perldelta.  In particular, fill in the Acknowledgements
 section.  You can generate a list of contributors with checkAUTHORS.pl.
 For example:
 
-  $ git log --pretty=fuller v5.13.2..HEAD | \
+  $ git log --pretty=fuller v5.13.${last}..HEAD | \
     perl Porting/checkAUTHORS.pl --who -
 
 Look at the previous L<perldelta> for how to write the opening
 paragraph of the Acknowledgements section. To get the amount of
 changed files and number of lines use this command:
 
-  $ git diff --shortstat v5.13.8..HEAD | \
+  $ git diff --shortstat v5.13.${last}..HEAD | \
     ./perl -Ilib -nE 'my ($files, $insert, $delete) = /(\d+)/ga; say "$files files and ", $insert + $delete, " lines changed"'
 
 Making sure to round off the number of lines changed.