diff options
author | Aaron Crane <arc@cpan.org> | 2016-12-29 18:40:54 +0000 |
---|---|---|
committer | Aaron Crane <arc@cpan.org> | 2016-12-30 14:00:01 +0000 |
commit | 592f3827ae127049c6e5f14186f59609ae7b8a8f (patch) | |
tree | b2a36e58881bb72d661a76da3897ed43690b8a15 /Porting/sync-with-cpan | |
parent | d8a823f405d6ff75c47de981c528dd98be9e3979 (diff) | |
download | perl-592f3827ae127049c6e5f14186f59609ae7b8a8f.tar.gz |
Porting/sync-with-cpan: improve advice emitted at end
Diffstat (limited to 'Porting/sync-with-cpan')
-rwxr-xr-x | Porting/sync-with-cpan | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/Porting/sync-with-cpan b/Porting/sync-with-cpan index 3c9c8a2daa..254af22d0b 100755 --- a/Porting/sync-with-cpan +++ b/Porting/sync-with-cpan @@ -580,8 +580,20 @@ else { say "Make sure you update this by hand before committing."; } -say "$o_module is now version $new_version"; -say "Now you ought to run a make; make test ..."; +print <<"EOF"; +======================================================================= + +$o_module is now at version $new_version +Next, you should run a "make test". + +Hopefully that will complete successfully, but if not, you can make any +changes you need to get the tests to pass. Don't forget that you'll need +a "CUSTOMIZED" entry in Porting/Maintainers.pl if you change any of the +files under cpan/$pkg_dir. + +Once all tests pass, you can "git add -u" and "git commit" the changes. + +EOF __END__ |