diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-24 11:28:18 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-24 11:28:45 -0500 |
commit | fb719edbf7d47eedbe745352b90a8f69e2cb6dd9 (patch) | |
tree | 5c69ccb6de25d8a68d261be0e94503a1685b0aea /download.sh | |
parent | e91f1d7aa947cbbe1c1605ed020d960220ba59b8 (diff) |
Fix indentation.
Diffstat (limited to 'download.sh')
-rw-r--r-- | download.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |