mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Fix more syntax errors in TrueNAS function
This commit is contained in:
parent
b1fc537332
commit
66703ddd6c
1 changed files with 2 additions and 2 deletions
4
quickget
4
quickget
|
@ -1467,9 +1467,9 @@ function get_truenas() {
|
|||
local ISO=""
|
||||
local URL=""
|
||||
|
||||
if [[ "${RELEASE}" == "13.0"* ]] && [ "${OS}" == "CORE" ]; then
|
||||
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
|
||||
elif [ "${RELEASE}" == "22.12" ] && [ "${OS}" == "SCALE" ]; then
|
||||
URL="$(https://download.truenas.com/TrueNAS-SCALE-Bluefin/${RELEASE}.0/TrueNAS-${OS}-22.12.0.iso)"
|
||||
fi
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue