OpenLayers OpenLayers

Changeset 839

Show
Ignore:
Timestamp:
06/30/06 00:10:14 (2 years ago)
Author:
crschmidt
Message:

Ignore files starting with ".". On MacOS, these may be resource forks, but in any case, ignoring dotfiles is relatively standard practice.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/openlayers/tools/mergejs.py

    r495 r839  
    150150    for root, dirs, files in os.walk(sourceDirectory): 
    151151    for filename in files: 
    152         if filename.endswith(SUFFIX_JAVASCRIPT)
     152        if filename.endswith(SUFFIX_JAVASCRIPT) and not filename.startswith(".")
    153153        filepath = os.path.join(root, filename)[len(sourceDirectory)+1:] 
    154154        if (not cfg) or (filepath not in cfg.exclude):