Add 'featured' to the list of key/values to copy from the previous pkginfo. Fixes #815.

This commit is contained in:
Greg Neagle
2018-04-18 13:47:53 -07:00
parent 46747a9848
commit c837176d19

View File

@@ -433,7 +433,8 @@ def main():
'developer',
'icon_name',
'unused_software_removal_info',
'localized_strings']:
'localized_strings',
'featured']:
if key in matchingpkginfo:
print 'Copying %s: %s' % (key, matchingpkginfo[key])
pkginfo[key] = matchingpkginfo[key]