aboutsummaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
authorEinar Egilsson <einar@einaregilsson.com>2014-09-07 18:06:27 +0000
committerEinar Egilsson <einar@einaregilsson.com>2014-09-07 18:06:27 +0000
commit7f1bbbf9bc5a6c2ecdc51245114185244b1edbe8 (patch)
treec866b35c70b90462216222af346f36b502363947 /build.py
parentdfd5078d9e5789cac8e6e823803c93689be950ad (diff)
Deleted junk
Diffstat (limited to 'build.py')
-rw-r--r--build.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/build.py b/build.py
deleted file mode 100644
index 2eff878..0000000
--- a/build.py
+++ /dev/null
@@ -1,14 +0,0 @@
-import os, os.path, zipfile, sys
-
-xpi = zipfile.ZipFile('redirector-' + raw_input('Version: ') + '.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')):
- xpi.write(os.path.join(root[2:],f))
-
-xpi.close()
-
-