diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-26 15:52:17 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-26 15:52:17 -0500 |
commit | c8facfd6a5004be24f413239b0c5adfa963c2aea (patch) | |
tree | a7cf6018c33bd246cfdc2762557ece917c960e01 /download.sh | |
parent | 9ed0afd2d6f7ea4402367beffa0780666c2f217d (diff) |
Reformat MD5SUM information and include OK or FAILURE on line underneath successful download.
Diffstat (limited to 'download.sh')
-rw-r--r-- | download.sh | 5 |
1 files changed, 4 insertions, 1 deletions
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 |