diff options
-rw-r--r-- | download.sh | 4 |
1 files changed, 1 insertions, 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 |