Remove redundant newline
This commit is contained in:
parent
e5baffa698
commit
32871dc261
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue