From a7508c0febf76ef11cb7ed799ca02b14760c0a0f Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Tue, 5 Oct 2021 23:51:57 +0100 Subject: [PATCH] Fix multiple Windows release support --- quickget | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/quickget b/quickget index d97f218..8cfef4a 100755 --- a/quickget +++ b/quickget @@ -70,7 +70,9 @@ function languages_windows() { function releases_windows() { - echo 10 + echo 8 \ + 10 \ + 11 } function web_get() { @@ -363,7 +365,7 @@ else releases_macos elif [[ "${OS}" == *"ubuntu"* ]]; then releases_ubuntu - elif [ "${OS}" == "windows" ]]; then + elif [ "${OS}" == "windows" ]; then releases_windows fi exit 1