diff options
author | Einar Egilsson | 2011-08-27 08:29:54 +0200 |
---|---|---|
committer | Einar Egilsson | 2011-08-27 08:29:54 +0200 |
commit | 3ba13e5bcb4177abc3aaef2da37c2b99befd6c88 (patch) | |
tree | 08384be2565c4697e1034299d554c349c8106af3 | |
parent | dddf54e52d33b6f0f086fde5a60e58ee67530876 (diff) |
Removed unittests from build
-rw-r--r-- | build.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2,6 +2,8 @@ import os, os.path, zipfile xpi = zipfile.ZipFile('redirector-2.6.xpi','w')
for (root, folders, files) in os.walk('.'):
+ if 'unittest' in root:
+ continue
if not '.svn' in root:
for f in files:
if f.lower().endswith(('.rdf', '.manifest', '.js', '.xpt', '.png', '.css', '.dtd', '.properties', '.xul', '.html')):
|