mirror of
https://github.com/derrod/legendary.git
synced 2024-11-09 10:58:32 +00:00
[cli] Properly remove EOS overlay when no prefix is supplied (#441)
This commit is contained in:
parent
7a617d35f3
commit
f9a2dae282
|
@ -2219,20 +2219,19 @@ class LegendaryCLI:
|
|||
print('Aborting...')
|
||||
return
|
||||
|
||||
logger.info('Deleting overlay installation...')
|
||||
self.core.remove_overlay_install()
|
||||
|
||||
if os.name != 'nt' and not prefix:
|
||||
logger.info('Registry entries in prefixes (if any) have not been removed. '
|
||||
f'This shouldn\'t cause any issues as the overlay will simply fail to load.')
|
||||
return
|
||||
else:
|
||||
logger.info('Removing registry entries...')
|
||||
remove_registry_entries(prefix)
|
||||
|
||||
logger.info('Removing registry entries...')
|
||||
remove_registry_entries(prefix)
|
||||
|
||||
if os.name != 'nt':
|
||||
logger.info(f'Registry entries in prefixes other than "{prefix}" were not removed. '
|
||||
f'This shouldn\'t cause any issues as the overlay will simply fail to load.')
|
||||
|
||||
logger.info('Deleting overlay installation...')
|
||||
self.core.remove_overlay_install()
|
||||
if os.name != 'nt':
|
||||
logger.info(f'Registry entries in prefixes other than "{prefix}" were not removed. '
|
||||
f'This shouldn\'t cause any issues as the overlay will simply fail to load.')
|
||||
logger.info('Done.')
|
||||
|
||||
elif args.action in {'install', 'update'}:
|
||||
|
|
Loading…
Reference in a new issue