ICU-8863 skip comments in cpyskip.txt
X-SVN-Rev: 30783
This commit is contained in:
parent
46fc0ce9da
commit
87335cd355
@ -82,7 +82,9 @@ die ("Can't find $cpyskip. Please download it from ".
|
||||
unless -f $cpyskip;
|
||||
|
||||
open SKIP, "<$cpyskip" or die "Error opening $cpyskip.";
|
||||
our @ignore_globs = map { chomp; glob_to_regex($_) } <SKIP>;
|
||||
our @ignore_globs = map { chomp; glob_to_regex($_) }
|
||||
grep { ! m/^\s*#/ }
|
||||
<SKIP>;
|
||||
close SKIP;
|
||||
|
||||
# list of file extensions to ignore
|
||||
|
Loading…
Reference in New Issue
Block a user