From 797d6accd2fd4fd1faa742a6ec8039b6aad8d861 Mon Sep 17 00:00:00 2001 From: Corentin Date: Mon, 3 Oct 2022 10:00:00 +0900 Subject: [PATCH] Fix path display for linking errors --- umake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umake.py b/umake.py index e4930b9..ad4a253 100755 --- a/umake.py +++ b/umake.py @@ -214,7 +214,7 @@ def make(config: Config): for job_path, job in jobs: # Wait the last jobs to finish job.wait() if job.returncode != 0: - error_paths.append((app_path, job.stdout.read() + job.stderr.read())) + error_paths.append((job_path, job.stdout.read() + job.stderr.read())) else: # Single-process for app_path, app_object_path in zip(config.APPS, all_app_objects): if app_path in config.IGNORE_APPS: