From 379228007b0fa73c8c23baaad5de3faf6b1d779b Mon Sep 17 00:00:00 2001 From: Jason DeTiberus <915544+detiber@users.noreply.github.com> Date: Sun, 15 Dec 2024 00:25:38 -0500 Subject: [PATCH] just fix --- justfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index fd009d8..68b71a9 100644 --- a/justfile +++ b/justfile @@ -28,5 +28,7 @@ fix: echo "Checking syntax: $file" just --unstable --fmt -f $file done - echo "Checking syntax: justfile" - just --unstable --fmt -f justfile || { exit 1; } + find {{ root-dir }} -type f -name "justfile" | while read -r file; do + echo "Checking syntax: $file" + just --unstable --fmt -f $file + done