Skip to content

Instantly share code, notes, and snippets.

@dagolden
Created February 3, 2014 01:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dagolden/8777821 to your computer and use it in GitHub Desktop.
Save dagolden/8777821 to your computer and use it in GitHub Desktop.
diff --git a/lib/Dist/Zilla/PluginBundle/DAGOLDEN.pm b/lib/Dist/Zilla/PluginBundle/DAGOLDEN.pm
index 0606618..c07e325 100644
--- a/lib/Dist/Zilla/PluginBundle/DAGOLDEN.pm
+++ b/lib/Dist/Zilla/PluginBundle/DAGOLDEN.pm
@@ -52,17 +52,17 @@ with 'Dist::Zilla::Role::PluginBundle::PluginRemover';
sub mvp_multivalue_args { qw/stopwords/ }
has stopwords => (
is => 'ro',
isa => 'ArrayRef',
lazy => 1,
default => sub {
- exists $_[0]->payload->{stopwords} ? $_[0]->payload->{stopwords} : [];
+ exists $_[0]->payload->{stopwords} ? $_[0]->payload->{stopwords} : ['xdg'];
},
);
has fake_release => (
is => 'ro',
isa => 'Bool',
lazy => 1,
default => sub { $_[0]->payload->{fake_release} },
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment