From b97ae012439ea7be7f39b33d9afd90560e0b20cc Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Mon, 23 Jan 2023 10:36:29 +0000 Subject: [PATCH] Fix syntax error --- quickget | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/quickget b/quickget index 092a339..99cfb11 100755 --- a/quickget +++ b/quickget @@ -1468,10 +1468,9 @@ function get_truenas() { local URL="" if [[ "${RELEASE}" == "13.0"* ]] && [ "${OS}" == "CORE" ]; then - URL="$(wget https://download.freenas.org/13.0/STABLE/U3.1/x64/${OS}.iso)" - - elif [[ "${RELEASE}" == "22.12"]] && [ "${OS}" == "SCALE"]; then - URL="$(https://download.truenas.com/TrueNAS-SCALE-Bluefin/${RELEASE}.0/TrueNAS-${OS}-22.12.0.iso)" + URL="$(wget https://download.freenas.org/13.0/STABLE/U3.1/x64/${OS}.iso)" + elif [[ "${RELEASE}" == "22.12"]] && [ "${OS}" == "SCALE" ]; then + URL="$(https://download.truenas.com/TrueNAS-SCALE-Bluefin/${RELEASE}.0/TrueNAS-${OS}-22.12.0.iso)" fi }