Also retrieve BaseVersion and version from Application.json

- may be helpful to have more data available if needed later
This commit is contained in:
Timothy Sutton
2016-08-12 11:39:41 -04:00
parent 0e942ce45f
commit 6481335929

View File

@@ -487,7 +487,9 @@ def getHDInstallerInfo(hd_payload_root, sap_code):
# - Name: display_name pkginfo key
# - ProductVersion: version pkginfo key and uninstall XML location
# - SAPCode: an uninstallXml for an installs item if it's a 'core' Type
for key in ['Name', 'ProductVersion', 'SAPCode']:
# - BaseVersion and version: not currently used but may be useful once
# there are more HD installers in the future
for key in ['BaseVersion', 'Name', 'ProductVersion', 'SAPCode', 'version']:
hd_app_info[key] = json_info[key]
hd_app_info['SAPCode'] = json_info['SAPCode']