diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-26 14:35:53 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-26 14:36:45 -0500 |
commit | 40e3d866cdea72d8e21a13bff2c1aa0c1ee0b819 (patch) | |
tree | c6a949374691f65faef3e8236746cf7ca411b375 | |
parent | 34c733421de1cd7b431fb0a70d71fa15df3a4773 (diff) |
Capitalize the error and remove the unset. It is not needed.
-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 |