File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -1780,6 +1780,17 @@ def info(self, args):
17801780 else :
17811781 manifest_info .append (InfoItem ('Prerequisites' , 'prerequisites' , None , None ))
17821782
1783+ if manifest .meta .uninstall_action_path :
1784+ human_list = [
1785+ f'Uninstaller path: { manifest .meta .uninstall_action_path } ' ,
1786+ f'Uninstaller args: { manifest .meta .uninstall_action_args or "(None)" } ' ,
1787+ ]
1788+ manifest_info .append (InfoItem ('Uninstaller' , 'uninstaller' , human_list ,
1789+ dict (path = manifest .meta .uninstall_action_path ,
1790+ args = manifest .meta .uninstall_action_args )))
1791+ else :
1792+ manifest_info .append (InfoItem ('Uninstaller' , 'uninstaller' , None , None ))
1793+
17831794 install_tags = {'' }
17841795 for fm in manifest .file_manifest_list .elements :
17851796 for tag in fm .install_tags :
You can’t perform that action at this time.
0 commit comments