diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-19 09:35:23 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-19 09:35:23 -0500 |
commit | 8b19fff6e9c48ca7e8af1641f253971444d3f470 (patch) | |
tree | d2af8acd7b453675f8bced6741e654a8f25530dc /download.sh | |
parent | 2dd2e92180b146982611bce51bd645524a6a0208 (diff) |
Use filename instead of url as output when downloading and redirect stdout sterr for md5sum to /dev/null. Put Failed message on a new line.
Diffstat (limited to 'download.sh')
-rwxr-xr-x | download.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/download.sh b/download.sh index 6d09ad1..99b0f7d 100755 --- a/download.sh +++ b/download.sh @@ -10,12 +10,12 @@ cat packages.csv | while read line; do if [ ! -f "${CACHEFILE}" ]; then - echo -ne "${PRP}Downloading ${YLW}${URL}${RST}... " + echo -ne "${PRP}Downloading ${YLW}${CACHEFILE}${RST}... " wget -nc -q -O "${LFS_SRC}/${CACHEFILE}" "${URL}" & pid=$! spinner "$pid" - if ! echo "${MD5SUM} ${LFS_SRC}/${CACHEFILE}" | md5sum -c >/dev/null; then + if ! echo "${MD5SUM} ${LFS_SRC}/${CACHEFILE}" | md5sum -c > /dev/null 2>&1; then rm -f "${LFS_SRC}/${CACHEFILE}" - echo -e "${GRN}Verification of ${YLW}${CACHEFILE} ${RED}failed! MD5 mismatch!${RST}" + echo -e "\n${GRN}Verification of ${YLW}${CACHEFILE} ${RED}failed! MD5 mismatch!${RST}" exit 1 fi |