From 40e3d866cdea72d8e21a13bff2c1aa0c1ee0b819 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Fri, 26 Mar 2021 14:35:53 -0500 Subject: Capitalize the error and remove the unset. It is not needed. --- download.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/download.sh b/download.sh index 72b7bb3..9b3da10 100644 --- a/download.sh +++ b/download.sh @@ -27,10 +27,8 @@ 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" "\n${GRN}Verification of ${YLW}${CACHEFILE} ${RED}failed! MD5 mismatch!${RST}\n" + printf "%b" "\n${GRN}Verification of ${YLW}${CACHEFILE} ${RED}FAILED! MD5 MISMATCH!${RST}\n" exit 1 fi fi done - -unset VERSION URL MD5SUM CACHEFILE -- cgit v1.2.3-54-g00ecf