diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-25 11:04:08 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-25 11:04:08 -0500 |
commit | 8fbe40ea145e8303713785fbacd8c99ec0fa444c (patch) | |
tree | 595984cf5173e1c62e86dfab7cd0cafd09724b0b /download.sh | |
parent | 7439ae410a0569cb2f309fd55ef5782381422455 (diff) |
Unset variables no longer in use and remove commented out wget command.
Diffstat (limited to 'download.sh')
-rw-r--r-- | download.sh | 3 |
1 files changed, 2 insertions, 1 deletions
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 |