From 315ce2397efab99a8a15cd2bb73367b00f178418 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Fri, 2 Apr 2021 11:08:30 -0500 Subject: Use if [[ ... ]] instead of [ ... ] and change retval check in setupdisk when checking exit code when creating partition. --- download.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'download.sh') diff --git a/download.sh b/download.sh index d210b1e..af1dd08 100644 --- a/download.sh +++ b/download.sh @@ -9,7 +9,7 @@ cat packages.csv patches.csv | while read -r line; do MD5SUM="$(echo "$line" | cut -d\, -f4)" CACHEFILE="$(basename "${URL}")" - if [ ! -f "${CACHEFILE}" ]; then + if [[ ! -f "${CACHEFILE}" ]]; then printf "%b" "${PRP}Downloading ${YLW}${CACHEFILE}${RST}... " -- cgit v1.2.3-54-g00ecf