From f512d3ff6da44a83da279cf32484497bf3cc8f22 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Fri, 4 Jul 2025 11:54:50 +0200 Subject: [PATCH] fix(scripts): remove redundant newline in output - Eliminates an unnecessary newline in the script's output - Ensures cleaner formatting of the echoed version line --- scripts/read-cliff-version.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/read-cliff-version.sh b/scripts/read-cliff-version.sh index 21142a0..8efff4c 100755 --- a/scripts/read-cliff-version.sh +++ b/scripts/read-cliff-version.sh @@ -18,5 +18,4 @@ else fi echo "version=${VERSION_LINE:-}" >> "$GITHUB_OUTPUT" -echo "$VERSION_LINE" -n \ No newline at end of file +echo "$VERSION_LINE" \ No newline at end of file