aboutsummaryrefslogtreecommitdiffstats
path: root/mkhint
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-07-09 12:24:20 +0200
committerDanilo M. <danix@danix.xyz>2026-07-09 12:24:20 +0200
commit15358714547804abb9227570a03c8fb3c4e801ec (patch)
tree47239eba8d9d06de812defc5c020f6c9c5127b61 /mkhint
parentd6877f911f3c52feaa9678aa7059c619621deeca (diff)
downloadmkhintfile-15358714547804abb9227570a03c8fb3c4e801ec.tar.gz
mkhintfile-15358714547804abb9227570a03c8fb3c4e801ec.zip
fix: newline before closing fence in nvchecker stanza echov1.2.5
The body branch used printf '%s' (no trailing newline) so the closing fence glued onto the last body line. Use printf '%s\n'. Regression test T16 asserts the fence sits on its own line. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Diffstat (limited to 'mkhint')
-rwxr-xr-xmkhint2
1 files changed, 1 insertions, 1 deletions
diff --git a/mkhint b/mkhint
index 5bb3a69..1d7c86d 100755
--- a/mkhint
+++ b/mkhint
@@ -1041,7 +1041,7 @@ EOF
echo "────────────────────────────"
printf '%s\n' "$label"
if [[ -n "$body" ]]; then
- printf '%s' "$body"
+ printf '%s\n' "$body"
else
echo "# TODO: configure nvchecker source for \"${pkg}\""
fi