diff --git a/quickget b/quickget index 29b3c3b..f635e56 100755 --- a/quickget +++ b/quickget @@ -3487,25 +3487,6 @@ fi LANGS=() -handle_missing() { - # Handle odd missing Fedora combinations - if [[ $OS == fedora ]] ; then - if [[ ${RELEASE} = "33" && ${EDITION} = "i3" ]] || [[ ${RELEASE} = "34" && ${EDITION} = "Cinnamon" ]] || [[ "${RELEASE}" < "39" && ${EDITION} = "Onyx" ]]; then - echo "ERROR! Unsupported combination" - echo " Fedora ${RELEASE} ${EDITION} is not available, please choose another Release or Edition" - exit 1; - fi - fi - # Handle missing Manjaro Sway minimal - if [[ $OS == manjaro ]] ; then - if [[ ${RELEASE} == "sway" && ${EDITION} == "minimal" ]] ; then - echo "ERROR! Unsupported combination" - echo " Manjaro Sway does not have a minimal edition" - exit 1; - fi - fi -} - CURL=$(command -v curl) if [ ! -e "${CURL}" ]; then echo "ERROR! curl not found. Please make install curl"