From 01dc9c9742bd0f85c8a193d57f8ff1ffb555e69d Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Wed, 27 Oct 2021 16:57:01 +0100 Subject: [PATCH] Make shellcheck happy --- quickget | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickget b/quickget index 77052ab..3854bd5 100755 --- a/quickget +++ b/quickget @@ -97,9 +97,9 @@ function list_csv() { if [ "${OS}" == "macos" ]; then DOWNLOADER="macrecovery" - elif [ "${OS}" == "ubuntu" ] && [ ${RELEASE} == "canary" ]; then + elif [ "${OS}" == "ubuntu" ] && [ "${RELEASE}" == "canary" ]; then DOWNLOADER="zsync" - elif [[ "${OS}" == *"ubuntu"* ]] && [ ${RELEASE} == "devel" ]; then + elif [[ "${OS}" == *"ubuntu"* ]] && [ "${RELEASE}" == "devel" ]; then DOWNLOADER="zsync" else DOWNLOADER="wget"