From 5d8e8f530b0aeeb89347d0b0ced0759ba2d4f7ae Mon Sep 17 00:00:00 2001 From: salixor <salixor@pm.me> Date: Wed, 13 Sep 2023 16:17:10 +0000 Subject: [PATCH] Fix missing newline after deletion report --- stpkg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stpkg b/stpkg index 424cc53..eccd0e2 100755 --- a/stpkg +++ b/stpkg @@ -882,7 +882,7 @@ __pack() { ST_JSON="`jq --arg STICKER_NAME "$STICKER_NAME" '.stickers[] | select(.body == $STICKER_NAME)' < "$DEST_INDEX"`" sed -i "/[0-9a-f]\{32\} $i/d" $SUM_FILE local report="`echo -ne "$ST_JSON" | jq -r --arg COLUMN_SEP "$COLUMN_SEP" '[.body, .url, .info.mimetype, .info.w, .info.h]|join($COLUMN_SEP)'`$COLUMN_SEP`__red Deleted`" - echo -n "$report" + echo "$report" done } | column -t -s "$COLUMN_SEP" echo "----------------" -- GitLab