Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bugfix: include files without trailing \n cause broken MANIFEST.SKIP …
…files Internally, all lines are in an array, with each entry \n terminated. However, this leads to a problem when the last line in in an included file lacks a \n, as this gets stored as: [ "secondlastline\n", "lastline", "#!end included" ] Which stringifies as: secondlastline lastline#!end included And that lastline doesn't match the files its supposed to. Closes GH Perl-Toolchain-Gang#14
- Loading branch information