--- lib/Dist/Zilla/Plugin/ContributorsFromGit.pm.orig 2017-08-14 11:44:49.000000000 -0700
+++ lib/Dist/Zilla/Plugin/ContributorsFromGit.pm 2018-01-06 20:12:21.000000000 -0800
'Dist::Zilla::Role::MetaProvider',
has _contributor_list => (
my @authors = $self->zilla->authors->flatten;
+ my $target = $self->target_path;
### and get our list from git, filtering: "@authors"
grep { [ map { lc } @authors ]->none eq lc }
apply { chomp; s/^\s*\d+\s*// }
- `git shortlog -s -e HEAD`
+ `git shortlog -s -e HEAD $target`
return [ sort @contributors ];