From bc2ffe5e6633538e5e34e1867b3a16c844c8b5fe Mon Sep 17 00:00:00 2001 From: William Harrington Date: Fri, 2 Apr 2021 12:29:28 -0500 Subject: Format FAIL and OK messages with intense color. Reset colors before new line. Try to keep a sane style in the scripts. --- download.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'download.sh') diff --git a/download.sh b/download.sh index af1dd08..72c250b 100644 --- a/download.sh +++ b/download.sh @@ -10,8 +10,6 @@ cat packages.csv patches.csv | while read -r line; do CACHEFILE="$(basename "${URL}")" if [[ ! -f "${CACHEFILE}" ]]; then - - printf "%b" "${PRP}Downloading ${YLW}${CACHEFILE}${RST}... " download "${URL}" else @@ -20,10 +18,9 @@ cat packages.csv patches.csv | while read -r line; do if ! echo "${MD5SUM} ${LFS}/sources/${CACHEFILE}" | md5sum -c > /dev/null 2>&1; then rm -f "${LFS}/sources/${CACHEFILE}" - printf "%b" "\n${IPRP} MD5SUM ${YLW}${MD5SUM} ${RED}FAILED! MD5 MISMATCH!${RST}\n" + printf "%b" "\n${IPRP} MD5SUM ${YLW}${MD5SUM}${IRED} FAILED! MD5 MISMATCH!${RST}\n" exit 1 fi - - printf "%b" "\n${IPRP} MD5SUM ${YLW}${MD5SUM}${GRN} OK\n${RST}" + printf "%b" "\n${IPRP} MD5SUM ${YLW}${MD5SUM}${IGRN} OK${RST}\n" done -- cgit v1.2.3-54-g00ecf