diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-26 14:50:49 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-26 14:51:44 -0500 |
commit | b1f91cc0a928cd08c01605498e151eda8dbcce4a (patch) | |
tree | 41960226aa3f12410b559c129f9d9ec7c4a6f467 | |
parent | 284a8176c1d6fc9eaba1e89d9e1c86056cf64194 (diff) |
Provide wget exit status when download fails.
-rw-r--r-- | download.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/download.sh b/download.sh index 9b3da10..4e3c794 100644 --- a/download.sh +++ b/download.sh @@ -9,6 +9,11 @@ download() echo -n " " wget -nc -q --show-progress --progress=dot "$url" 2>&1 | grep --line-buffered "%" | \ sed -u -e "s,\.,,g" | awk '{printf("\b\b\b\b%4s", $2)}' + local retval="${PIPESTATUS[0]}" + if [ "${retval}" -ne 0 ]; then + printf "%b" "${RED}FAILED! WGET EXIT (${retval})\n${RST}" + exit "${retval}" + fi printf "%b" "\b\b\b\b\n" tput cnorm } |