From 4e90c611e6c52be116badd6bf477495dcb370fe8 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Fri, 26 Mar 2021 15:52:17 -0500 Subject: Reformat MD5SUM information and include OK or FAILURE on line underneath successful download. --- download.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/download.sh b/download.sh index 2cec438..5f5c608 100644 --- a/download.sh +++ b/download.sh @@ -16,8 +16,11 @@ cat packages.csv patches.csv | while read -r line; do download "${URL}" if ! echo "${MD5SUM} ${LFS}/sources/${CACHEFILE}" | md5sum -c > /dev/null 2>&1; then rm -f "${LFS}/sources/${CACHEFILE}" - printf "%b" "${GRN}Verification of ${YLW}${CACHEFILE} ${RED}FAILED! MD5 MISMATCH!${RST}\n" + printf "%b" "\n${IPRP} MD5SUM ${YLW}${MD5SUM} ${RED}FAILED! MD5 MISMATCH!${RST}\n" exit 1 fi + + printf "%b" "\n${IPRP} MD5SUM ${YLW}${MD5SUM}${GRN} OK\n${RST}" + fi done -- cgit v1.2.3-54-g00ecf