| Index: utils.py |
| =================================================================== |
| --- a/utils.py |
| +++ b/utils.py |
| @@ -27,7 +27,7 @@ |
| if sys.platform not in platform_map: |
| raise Exception('Unknown platform, is there a JS shell version for it?') |
| - download_url = 'https://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/2014/04/2014-04-14-00-05-01-mozilla-esr24/jsshell-%s.zip' % platform_map[sys.platform] |
| + download_url = 'https://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/2015/03/2015-03-29-mozilla-esr31-debug/jsshell-%s.zip' % platform_map[sys.platform] |
|
Wladimir Palant
2015/03/31 14:28:37
Using a debug build isn't a great idea. How about
Sebastian Noack
2015/03/31 17:54:23
Sure. I just didn't find a non-debug esr31 build,
|
| data = StringIO(urllib.urlopen(download_url).read()) |
| zip = zipfile.ZipFile(data) |
| zip.extractall(shell_dir) |