From 13c5959df9257b68ec47d7a9e86212105a33bac8 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Mon, 22 Mar 2021 19:38:17 -0500 Subject: Add a percentage count while downloading tarball and if md5sum doesn't match, rm the downloaded file. --- download.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/download.sh b/download.sh index 7fd9d47..4154c75 100644 --- a/download.sh +++ b/download.sh @@ -22,10 +22,10 @@ cat packages.csv patches.csv | while read line; do echo -ne "${PRP}Downloading ${YLW}${CACHEFILE}${RST}... " - #wget -nc ${URL} -O ${LFS_SRC}/${CACHEFILE} --progress=dot -q --show-progress 2>&1 | awk 'NF>2 && $(NF-2) ~ /%/{printf "\r \t\t\t\t\t\t%s",$(NF-2)} END{print "\r "}' + #wget -nc ${URL} -O ${LFS}/sources/${CACHEFILE} --progress=dot -q --show-progress 2>&1 | awk 'NF>2 && $(NF-2) ~ /%/{printf "\r \t\t\t\t\t\t%s",$(NF-2)} END{print "\r "}' download ${URL} - if ! echo "${MD5SUM} ${LFS_SRC}/${CACHEFILE}" | md5sum -c > /dev/null 2>&1; then - rm -f "${LFS_SRC}/${CACHEFILE}" + if ! echo "${MD5SUM} ${LFS}/sources/${CACHEFILE}" | md5sum -c > /dev/null 2>&1; then + rm -f "${LFS}/sources/${CACHEFILE}" echo -e "\n${GRN}Verification of ${YLW}${CACHEFILE} ${RED}failed! MD5 mismatch!${RST}" exit 1 fi -- cgit v1.2.3-54-g00ecf