Print $PATH

This commit is contained in:
Nick Brassel
2025-08-07 08:23:31 +10:00
parent 24492d4058
commit d425385664
3 changed files with 6 additions and 0 deletions
+4
View File
@@ -37,6 +37,10 @@ def mass_compile_targets(targets: List[BuildTarget], clean: bool, dry_run: bool,
builddir.mkdir(parents=True, exist_ok=True)
with open(makefile, "w") as f:
f.write(f"""\
$(info PATH=$(PATH))
"""# noqa
)
for target in sorted(targets, key=lambda t: (t.keyboard, t.keymap)):
keyboard_name = target.keyboard
keymap_name = target.keymap