Bug 1232543: treat target.jsshell.zip as a zip file; r=jmaher

--HG--
extra : rebase_source : e3c889d86d265032db3893a2c11f1f4993c33e6c
This commit is contained in:
Dustin J. Mitchell 2015-12-15 10:37:15 -05:00
Родитель 9d51f0724c
Коммит ff1a44e991
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -435,7 +435,8 @@ You can set this by:
for file_name in target_packages:
target_dir = test_install_dir
unzip_dirs = target_unzip_dirs
if "jsshell-" in file_name:
if "jsshell-" in file_name or file_name == "target.jsshell.zip":
self.info("Special-casing the jsshell zip file")
unzip_dirs = None
target_dir = dirs['abs_test_bin_dir']
url = self.query_build_dir_url(file_name)