diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-08-04 23:06:58 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-08-04 23:06:58 +0000 |
| commit | e563b636c32c2c7ef297eb7df572f914b8a70648 (patch) | |
| tree | 39fac4c63cf7cd317ed1df2e6f4df15f353d83bc /scripts | |
| parent | 3cc63d611c52b6813eebc7fddbdf7d9aa9c0a1ba (diff) | |
| download | zcatch-e563b636c32c2c7ef297eb7df572f914b8a70648.tar.gz zcatch-e563b636c32c2c7ef297eb7df572f914b8a70648.zip | |
updated make_release.py to handle windows stuff
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/make_release.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/make_release.py b/scripts/make_release.py index f0985de5..ce7197e9 100644 --- a/scripts/make_release.py +++ b/scripts/make_release.py @@ -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] != '.': |