commit 87587621d9c6e6f68494275faa7a39717b4163b0 parent a290d940cb0ea1b50e59e0939d72db86ba36bc39 Author: Sylvia Ivory <git@sivory.net> Date: Sun, 15 Mar 2026 23:42:45 -0700 Use tools sylveos runner Diffstat:
| M | Justfile | | | 6 | +++++- |
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/Justfile b/Justfile @@ -31,7 +31,11 @@ tools *args: run program *args: just build {{ program }} Bootable - just tools zig-out/bin/{{ program }}.bin {{ args }}; + if [ "{{ program }}" = "sylveos" ]; then \ + just tools zig-out/bin/{{ program }}.bin {{ args }} --sylveos; \ + else \ + just tools zig-out/bin/{{ program }}.bin {{ args }}; \ + fi \ clean: rm -rfv .zig-cache zig-out tools/target