From dd3bec5ba95afef8460588ce278783c9aaa26581 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sat, 2 May 2020 16:57:28 +0100 Subject: [PATCH] Fix #323 --- cibuildwheel/linux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cibuildwheel/linux.py b/cibuildwheel/linux.py index 04b2a620..6b25055c 100644 --- a/cibuildwheel/linux.py +++ b/cibuildwheel/linux.py @@ -266,7 +266,7 @@ def build(options: BuildOptions): container_name + ':/output/.', os.path.abspath(options.output_dir)]) except subprocess.CalledProcessError as error: - troubleshoot(options.project_dir, error) + troubleshoot(options.package_dir, error) exit(1) finally: # Still gets executed, even when 'exit(1)' gets called