From 32871dc261e9287b7c27504eccfcdd54e05f1ab2 Mon Sep 17 00:00:00 2001 From: Sven van Heugten Date: Wed, 11 Mar 2026 22:38:37 +0100 Subject: [PATCH] Remove redundant newline --- bin/git-check-assertions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/git-check-assertions b/bin/git-check-assertions index 75f9dc1..4633914 100755 --- a/bin/git-check-assertions +++ b/bin/git-check-assertions @@ -112,7 +112,7 @@ for commit_hash in "${commits[@]}"; do ) for block in "${blocks[@]}"; do echo "git-check-assertions block in $commit_hash:" - printf '%s\n' "$block" | sed 's/^/> /' + printf '%s' "$block" | sed 's/^/> /' if ! bash -euo pipefail -c "$block"; then echo "git-check-assertions block failed in $commit_hash" >&2 restore