From e74aa099bc141b1fc5bb4a64deae19e1a75af1de Mon Sep 17 00:00:00 2001 From: Nick Hastings Date: Mon, 20 Nov 2023 19:40:09 -0500 Subject: [PATCH] Add debugging to bootstrap script --- tools/buildbot/bootstrap.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/buildbot/bootstrap.py b/tools/buildbot/bootstrap.py index 6b287cad..d445a514 100644 --- a/tools/buildbot/bootstrap.py +++ b/tools/buildbot/bootstrap.py @@ -89,10 +89,14 @@ def main(): with Chdir('..'): if output_needs_cleaning(): + print("Cleaning output directory...") shutil.rmtree('OUTPUT') if not os.path.isdir('OUTPUT'): + print("Creating output directory...") os.mkdir('OUTPUT') + print("Changing to output directory...") with Chdir('OUTPUT'): + print("Running configure.py...") run_shell(config_argv, env = build_env) if __name__ == '__main__':