From 333c62556c56e85186ea855353b44076ec6c9967 Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Sun, 14 Oct 2018 07:18:34 -0600 Subject: [PATCH] Fixed echo output typo in borg error checking. --- backup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backup.sh b/backup.sh index 2ded6ab..91e19b2 100755 --- a/backup.sh +++ b/backup.sh @@ -535,7 +535,7 @@ fi ## Check status of borg operation borgResult="$?" if [ "$borgResult" -eq 0 ]; then - echo "${ok}${stamp} -- [SUCCESS] Borg backup completed successfully --" \ + echo -e "${ok}${stamp} -- [SUCCESS] Borg backup completed successfully --" \ "${normal}" >> "$logFile" elif [ "$borgResult" -eq 1 ]; then exitWarn+=('borg200')