diff options
author | Leon Brocard <acme@astray.com> | 2011-07-07 12:55:11 +0100 |
---|---|---|
committer | Leon Brocard <acme@astray.com> | 2011-07-07 12:55:11 +0100 |
commit | a599c209b48bc578c22f5e4a49c4b2c7856c8a66 (patch) | |
tree | dc026a7b149f5a7404b62f1f32066ed46434504c /Porting/release_managers_guide.pod | |
parent | 4b5789fe5c4c75816682f2e7a76a6b20720758fc (diff) | |
download | perl-a599c209b48bc578c22f5e4a49c4b2c7856c8a66.tar.gz |
Update lines changed code to match perldeltas in Porting/release_managers_guide.pod
Diffstat (limited to 'Porting/release_managers_guide.pod')
-rw-r--r-- | Porting/release_managers_guide.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Porting/release_managers_guide.pod b/Porting/release_managers_guide.pod index d9eedbba5e..eb84850a98 100644 --- a/Porting/release_managers_guide.pod +++ b/Porting/release_managers_guide.pod @@ -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. |