diff --git a/src/helma/framework/core/TypeManager.java b/src/helma/framework/core/TypeManager.java index b4a54f94..c445c021 100644 --- a/src/helma/framework/core/TypeManager.java +++ b/src/helma/framework/core/TypeManager.java @@ -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) ||