Backed out changeset 1687bce0a804 (bug 1621244) per gbrown's request on riot CLOSED TREE

This commit is contained in:
Stefan Hindli 2020-04-08 00:18:01 +03:00
Родитель 08e433da85
Коммит a34a2e6240
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -174,6 +174,12 @@ class SupportFilesConverter(object):
if field == 'support-files':
dest_path = mozpath.join(out_dir,
os.path.basename(pattern))
# If it's not a support file, we ignore it.
# This preserves old behavior so things like
# head files doesn't get installed multiple
# times.
else:
continue
info.installs.append((full, mozpath.normpath(dest_path)))
return info