From fa605d080bed7db18f7008f2d16fc98132164482 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Fri, 10 Apr 2020 14:18:09 +0100 Subject: [PATCH] Add back missing 'troubleshoot' function call --- cibuildwheel/linux.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cibuildwheel/linux.py b/cibuildwheel/linux.py index 89a21d2c..a28c0a49 100644 --- a/cibuildwheel/linux.py +++ b/cibuildwheel/linux.py @@ -260,7 +260,8 @@ def build(options: BuildOptions): call(['docker', 'cp', container_name + ':/output/.', os.path.abspath(options.output_dir)]) - except subprocess.CalledProcessError: + except subprocess.CalledProcessError as error: + troubleshoot(options.project_dir, error) exit(1) finally: # Still gets executed, even when 'exit(1)' gets called