I have a subdirectory in my Perl Module root directory that I don't want to release.
I tried using "prune_directory" or "exclude_file" properties of https://metacpan.org/pod/Dist::Zilla::Plugin::GatherDir
I tried to specify the [GatherDir] section, but this conflicted as duplicate with @Basic, so in my dist.ini
now I have (full file: https://github.com/telatin/FASTQ-Parser/blob/master/dist.ini):
[@Basic]
prune_directory = experimental
When building with dzil build --verbose
i have all the lines like:
[@Basic/GatherDir] adding file experimental/scripts/my.pl
so the directory I wanted to prune is indeed added.
What should I do?