Update lines changed code to match perldeltas in Porting/release_managers_guide.pod
authorLeon Brocard <acme@astray.com>
Thu, 7 Jul 2011 11:55:11 +0000 (12:55 +0100)
committerLeon Brocard <acme@astray.com>
Thu, 7 Jul 2011 11:55:11 +0000 (12:55 +0100)
Porting/release_managers_guide.pod

index d9eedbb..eb84850 100644 (file)
@@ -371,8 +371,8 @@ 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.${last}..HEAD | \
-    ./perl -Ilib -nE 'my ($files, $insert, $delete) = /(\d+)/ga; say "$files files and ", $insert + $delete, " lines changed"'
+  $ git diff --shortstat v5.15.0..HEAD | \
+    ./perl -Ilib -nE 'my ($files, $insert, $delete) = /(\d+)/ga; say $insert + $delete, " lines of changes across $files files"'
 
 Making sure to round off the number of lines changed.