Fix path display for linking errors

This commit is contained in:
Corentin 2022-10-03 10:00:00 +09:00
commit 797d6accd2

View file

@ -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: