diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-02 11:08:30 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-02 11:08:30 -0500 |
commit | 315ce2397efab99a8a15cd2bb73367b00f178418 (patch) | |
tree | d9798c354440ce542c2a9c5e1b93024ee56df99e /functions.sh | |
parent | e8c0f5a1a0d7ccee510fa59e577cccd46d68e3f8 (diff) |
Use if [[ ... ]] instead of [ ... ] and change retval check in setupdisk when checking exit code when creating partition.
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 |