updated make_release.py to handle windows stuff

This commit is contained in:
Magnus Auvinen 2007-08-04 23:06:58 +00:00
parent 3cc63d611c
commit e563b636c3

View file

@ -24,7 +24,7 @@ if platform == 'win32':
def copydir(src, dst):
for root, dirs, files in os.walk(src, topdown=True):
if "/." in root:
if "/." in root or "\\." in root:
continue
for name in dirs:
if name[0] != '.':