From 0dc6b457705ad45262be4fa5e0ca49cb03f3612c Mon Sep 17 00:00:00 2001 From: Manlio Perillo Date: Sat, 29 Apr 2023 16:58:10 +0200 Subject: [PATCH] eowyn.sh: remove checking formatting one file at a time This avoids unnecessary output. Also remove the comment, since the message to stdout makes it unnecessary. --- patches/eowyn.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/patches/eowyn.sh b/patches/eowyn.sh index bc2fb7c..95b2a1c 100755 --- a/patches/eowyn.sh +++ b/patches/eowyn.sh @@ -45,13 +45,8 @@ do fi done -# Test the correct formatting of the healed exercises. echo "Looking for non-conforming code formatting..." -for healed in patches/healed/*.zig -do - echo Check $(basename "$healed") - zig fmt --check "$healed" -done +zig fmt --check patches/healed # Test the healed exercises. May the compiler have mercy upon us. zig build -Dhealed