diff options
author | Einar Egilsson <einar@einaregilsson.com> | 2014-09-07 17:50:28 +0000 |
---|---|---|
committer | Einar Egilsson <einar@einaregilsson.com> | 2014-09-07 17:50:28 +0000 |
commit | dfd5078d9e5789cac8e6e823803c93689be950ad (patch) | |
tree | 57c1c68f8b6c757c769090f96d09e014356d645a /build.py | |
parent | e2c1cd613cdfaaf4ae57d9024234748f30a3e80c (diff) | |
parent | dfa02f353906d63ee67d1924e5e4c39f615663a5 (diff) |
Merge branch 'master' of https://github.com/einaregilsson/Redirector
Diffstat (limited to 'build.py')
-rw-r--r-- | build.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ -import os, os.path, zipfile
+import os, os.path, zipfile, sys
-xpi = zipfile.ZipFile('redirector-2.7.1.xpi','w')
+xpi = zipfile.ZipFile('redirector-' + raw_input('Version: ') + '.xpi','w')
for (root, folders, files) in os.walk('.'):
if 'unittest' in root:
continue
|