sylveos

Toy Operating System
Log | Files | Refs

commit df5c42c175e426c3425088bb629739c8c00916db
parent 508c5c2ee266ae65535e87e021eecd16424417c3
Author: Sylvia Ivory <git@sivory.net>
Date:   Tue, 10 Feb 2026 15:30:31 -0800

Update Justfile

Diffstat:
MJustfile | 9++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/Justfile b/Justfile @@ -15,9 +15,12 @@ install program sd-card="/dev/mmcblk0p1": sleep 3 # pray udisksctl unmount -b {{ sd-card }} -run program: +tools *args: + cargo run --manifest-path tools/Cargo.toml -- {{ args }} + +run program *args: just build {{ program }} Bootable - ./zig-out/bin/pi-install zig-out/bin/{{ program }}.bin + just tools zig-out/bin/{{ program }}.bin {{ args }} clean: - rm -rfv .zig-cache zig-out + rm -rfv .zig-cache zig-out tools/target