From 30cb63b2642b86bdae18ba4cd86cd1c4a7244cac Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Sat, 27 Jun 2026 18:00:21 +0200 Subject: [PATCH] fix history printing --- src/backup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backup b/src/backup index 5777211..cc99894 100755 --- a/src/backup +++ b/src/backup @@ -294,10 +294,10 @@ check_backup_date() is_backup_old "$typ" "$(cat $history_path/$typ)" \ || color=$LIGHTRED printf "${color}last backup %s " "$typ" - printf "am %s%s\n" "$(cat $history_path/$typ)" "$RESET" + printf "am %s$RESET\n" "$(cat $history_path/$typ)" else printf "${LIGHTRED}no backup %s " $typ - printf "exists%s}\n" "$RESET" + printf "%s$RESET\n" "exists" fi done echo -- 2.47.3