From dca216d053dc3b43ee1f9f245fda06454b139b42 Mon Sep 17 00:00:00 2001 From: derrod Date: Thu, 17 Dec 2020 14:55:32 +0100 Subject: [PATCH] [cli] Fix repair-and-update not working correctly --- legendary/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legendary/cli.py b/legendary/cli.py index 2c1dd63..18bd57d 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -524,7 +524,7 @@ class LegendaryCLI: args.no_install = True elif args.subparser_name == 'repair' or args.repair_mode: args.repair_mode = True - args.no_install = True + args.no_install = args.repair_and_update is False repair_file = os.path.join(self.core.lgd.get_tmp_path(), f'{args.app_name}.repair') if not self.core.login():