Ignore files starting with '.'
This commit is contained in:
parent
189b79b840
commit
1edfed4583
1 changed files with 5 additions and 0 deletions
|
@ -378,6 +378,11 @@ public final class TypeManager {
|
|||
for (int i = 0; i < list.length; i++) {
|
||||
String fn = list[i].getName();
|
||||
|
||||
// ignore files starting with ".".
|
||||
if (fn.startsWith(".")) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!proto.updatables.containsKey(fn)) {
|
||||
if (fn.endsWith(templateExtension) || fn.endsWith(scriptExtension) ||
|
||||
fn.endsWith(actionExtension) || fn.endsWith(skinExtension) ||
|
||||
|
|
Loading…
Add table
Reference in a new issue