Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix copy-pasta in error message
  • Loading branch information
zoffixznet committed Jul 29, 2018
1 parent fd967f9 commit 4c03426
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -22,8 +22,8 @@ use feature 'state';
sub process {
my $self = shift;

$self->__fetch_file(sub {$_[0]->{name} =~ /^README/i }, 'README');
$self->__fetch_file(sub {$_[0]->{name} eq '.travis.yml'}, 'README');
$self->__fetch_file(sub {$_[0]->{name} =~ /^README/i }, 'README' );
$self->__fetch_file(sub {$_[0]->{name} eq '.travis.yml'}, '.travis.yml');

return 1;
}
Expand Down

0 comments on commit 4c03426

Please sign in to comment.