From e81fede77b2a260dae5233f7da2fea15290d385d Mon Sep 17 00:00:00 2001 From: sit-d <281093367+sit-d@users.noreply.github.com> Date: Thu, 23 Jul 2026 09:02:38 -0600 Subject: [PATCH] fix: resolve relative fasmg executable paths --- scripts/validate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/validate.py b/scripts/validate.py index fcc08fb..461ba7f 100644 --- a/scripts/validate.py +++ b/scripts/validate.py @@ -59,7 +59,7 @@ def find_fasmg(explicit: str | None) -> Path: if explicit: p = Path(explicit) if p.is_file(): - return p + return p.resolve() sys.exit(f"error: --fasmg path does not exist: {explicit}") for c in DEFAULT_CANDIDATES: found = shutil.which(c) if os.sep not in c else (c if Path(c).is_file() else None)