mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
updated make_release.py to handle windows stuff
This commit is contained in:
parent
3cc63d611c
commit
e563b636c3
|
@ -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] != '.':
|
||||
|
|
Loading…
Reference in a new issue