diff options
Diffstat (limited to 'functions.sh')
-rw-r--r-- | functions.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functions.sh b/functions.sh index 63fa887..a260f66 100644 --- a/functions.sh +++ b/functions.sh @@ -8,7 +8,7 @@ download() 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 + if [[ "${retval}" -ne 0 ]]; then printf "%b" "${RED}FAILED! WGET EXIT (${retval})\n${RST}" exit "${retval}" fi @@ -41,7 +41,7 @@ function spinner() { local spintype=$2 - if [ -z "${spintype}" ] || [ "${spintype}" -ge "${numspinners}" ]; then + if [[ -z "${spintype}" ]] || [[ "${spintype}" -ge "${numspinners}" ]]; then spintype=$((RANDOM % numspinners)) fi |