Beispiel #1
0
def run_recovery(args):
    if not query_yes_no(
            'This is an experimental feature and could change at any time. Do you want to continue?'
    ):
        return 0
    Config().output_dir = args.build_directory
    with PatchEngine() as engine:
        return engine.run_recovery()
Beispiel #2
0
 def run_recovery(args):
     experimental_query()
     adjust_paths_from_build(args)
     with PatchEngine(args) as engine:
         return engine.recovery()