Remove redundant newline

This commit is contained in:
Sven van Heugten 2026-03-11 22:38:37 +01:00
parent e5baffa698
commit 32871dc261
No known key found for this signature in database
GPG key ID: D612F88666F4F660

View file

@ -112,7 +112,7 @@ for commit_hash in "${commits[@]}"; do
) )
for block in "${blocks[@]}"; do for block in "${blocks[@]}"; do
echo "git-check-assertions block in $commit_hash:" 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 if ! bash -euo pipefail -c "$block"; then
echo "git-check-assertions block failed in $commit_hash" >&2 echo "git-check-assertions block failed in $commit_hash" >&2
restore restore