From f625e4181f8953272e01e246534c2df70e26b81c Mon Sep 17 00:00:00 2001 From: John Date: Fri, 17 Oct 2025 07:03:36 -0400 Subject: [PATCH] test.sh: add trailing newline. --- test.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/test.sh b/test.sh index d79f6cb..bee2495 100755 --- a/test.sh +++ b/test.sh @@ -5,4 +5,5 @@ export DOUGHLANG_VERBOSE="${DOUGHLANG_VERBOSE:-0}" for file in $(find "$@" -type f); do echo $file; cat $file | cargo run -q $CARGO_FLAGS; + echo; done