From 835366b102f92a5fc7710ad67326b176f1ded477 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Fri, 26 Mar 2021 16:54:18 -0500 Subject: Add new line after backup found message and only return FAILED if failure. --- chapter6/backup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chapter6/backup.sh') diff --git a/chapter6/backup.sh b/chapter6/backup.sh index f2f0d64..7c458c8 100644 --- a/chapter6/backup.sh +++ b/chapter6/backup.sh @@ -4,7 +4,7 @@ file="${LFS_VER}-ch6-backup.tar.xz" directories=(bin etc lib lib64 sbin tools usr var) if [ -f "${LFS}/sources/chapter6/backup" ]; then - printf "%b" "${YLW}Chapter 6 ${GRN}Backup found. Remove manually to backup again.${RST}" + printf "%b" "${YLW}Chapter 6 ${GRN}Backup found. Remove manually to backup again.\n${RST}" else echo -ne "${GRN}Backing up ${YLW}${LFS}${GRN} to ${YLW}${file}${RST}... " @@ -13,7 +13,7 @@ else spinner "$pid" retval=$? if [ "$retval" -ne 0 ]; then - printf "%b" "${RED}Backup FAILED!${RST}\n" + printf "%b" "${RED}FAILED!${RST}\n" exit 1 else sudo chown "${USER}" "${HOME}"/"${file}" -- cgit v1.2.3-54-g00ecf