From 105aea46efb806c64f567ed62ce4464251200a67 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Mon, 21 Feb 2022 05:12:11 +0000 Subject: [PATCH] Correct conditionals for Tails --- quickget | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickget b/quickget index ef11803..eb154df 100755 --- a/quickget +++ b/quickget @@ -1984,7 +1984,7 @@ if [ -n "${2}" ]; then get_rocky elif [ "${OS}" == "solus" ]; then get_solus - elif [[ "${OS}" == "tails"* ]]; then + elif [ "${OS}" == "tails" ]; then get_tails elif [[ "${OS}" == *"ubuntu"* ]]; then get_ubuntu @@ -2069,7 +2069,7 @@ else releases_slackware elif [ "${OS}" == "solus" ]; then releases_solus - elif [[ "${OS}" == "tails"* ]]; then + elif [ "${OS}" == "tails" ]; then releases_tails elif [[ "${OS}" == *"ubuntu"* ]]; then releases_ubuntu