mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Make shellcheck happy
This commit is contained in:
parent
584c855ec3
commit
01dc9c9742
1 changed files with 2 additions and 2 deletions
4
quickget
4
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"
|
||||
|
|
Loading…
Reference in a new issue