From 0a92fb84ec5beb4e51579e6d665313632779981d Mon Sep 17 00:00:00 2001 From: Aetias Date: Sun, 6 Jul 2025 14:48:09 +0200 Subject: [PATCH] configure: Print `dsd json delinks` error --- tools/configure.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/configure.py b/tools/configure.py index ef93ed71..3cba9d45 100755 --- a/tools/configure.py +++ b/tools/configure.py @@ -225,7 +225,10 @@ def main(): "json", "delinks", "--config-path", config_path / args.version / "arm9" / "config.yaml" - ], capture_output=True, text=True, check=True) + ], capture_output=True, text=True) + if out.returncode != 0: + print(f"Error running dsd:\n{out.stderr.strip()}") + return delinks_json = json.loads(out.stdout) project = Project(args.version, platform=platform, delinks_json=delinks_json)