From 56241819a737d927c1ccacb8509b04e21c9e6401 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Wed, 23 Sep 2020 11:56:15 +0300 Subject: [PATCH] kiss-outdated: fix missing newline --- contrib/kiss-outdated | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/kiss-outdated b/contrib/kiss-outdated index ce7d026..263947f 100755 --- a/contrib/kiss-outdated +++ b/contrib/kiss-outdated @@ -20,7 +20,7 @@ for pkg in */; do pkg=${pkg%%/} read -r ver _ 2>/dev/null < "$pkg/version" || { - printf '%s: local version not found' "$pkg" >&2 + printf '%s: local version not found\n' "$pkg" >&2 continue }