projects
/
p5sagit/Distar.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
41e593e
)
fix manifest checking missing added files
Graham Knop [Tue, 27 Sep 2016 01:14:43 +0000 (21:14 -0400)]
helpers/check-manifest
patch
|
blob
|
blame
|
history
diff --git
a/helpers/check-manifest
b/helpers/check-manifest
index
794e8aa
..
0705c2e
100755
(executable)
--- a/
helpers/check-manifest
+++ b/
helpers/check-manifest
@@
-16,7
+16,7
@@
use ExtUtils::Manifest qw(filecheck maniread maniskip manicheck mkmanifest);
my $read = maniread;
my $skip = maniskip;
- my @missing = manicheck;
+ my @missing = filecheck;
my @remove = grep $skip->($_), sort keys %$read;
exit 0