From fb719edbf7d47eedbe745352b90a8f69e2cb6dd9 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Wed, 24 Mar 2021 11:28:18 -0500 Subject: Fix indentation. --- download.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'download.sh') diff --git a/download.sh b/download.sh index 9446d82..3726b84 100644 --- a/download.sh +++ b/download.sh @@ -26,7 +26,7 @@ cat packages.csv patches.csv | while read -r line; do printf "%b" "${PRP}Downloading ${YLW}${CACHEFILE}${RST}... " #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}/sources/${CACHEFILE}" | md5sum -c > /dev/null 2>&1; then + 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" exit 1 -- cgit v1.2.3-54-g00ecf From 75a9caa958cb26fa755b28cda777517fb17bae07 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Wed, 24 Mar 2021 11:36:26 -0500 Subject: Adjust indention again. --- download.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'download.sh') diff --git a/download.sh b/download.sh index 3726b84..d816394 100644 --- a/download.sh +++ b/download.sh @@ -25,7 +25,7 @@ cat packages.csv patches.csv | while read -r line; do printf "%b" "${PRP}Downloading ${YLW}${CACHEFILE}${RST}... " #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}" + 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" -- cgit v1.2.3-54-g00ecf From 8fbe40ea145e8303713785fbacd8c99ec0fa444c Mon Sep 17 00:00:00 2001 From: William Harrington Date: Thu, 25 Mar 2021 11:04:08 -0500 Subject: Unset variables no longer in use and remove commented out wget command. --- download.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'download.sh') diff --git a/download.sh b/download.sh index d816394..72b7bb3 100644 --- a/download.sh +++ b/download.sh @@ -24,7 +24,6 @@ cat packages.csv patches.csv | while read -r line; do printf "%b" "${PRP}Downloading ${YLW}${CACHEFILE}${RST}... " - #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}/sources/${CACHEFILE}" | md5sum -c > /dev/null 2>&1; then rm -f "${LFS}/sources/${CACHEFILE}" @@ -33,3 +32,5 @@ cat packages.csv patches.csv | while read -r line; do fi fi done + +unset VERSION URL MD5SUM CACHEFILE -- cgit v1.2.3-54-g00ecf