From 054b6cdf5e174befec9ef8c47f82e072834e9129 Mon Sep 17 00:00:00 2001 From: theofficialgman <28281419+theofficialgman@users.noreply.github.com> Date: Wed, 11 Oct 2023 19:13:43 -0400 Subject: [PATCH] api: increase minimum supported versions of debian and ubuntu --- api | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api b/api index f1d55a8ba6..6a1e3cb5f6 100755 --- a/api +++ b/api @@ -2555,10 +2555,10 @@ apt.armbian.com")" elif cat /proc/version | grep -qi Microsoft || cat /proc/sys/kernel/osrelease | grep -qi WSL || [[ -f "/run/WSL" ]] || [[ -f "/etc/wsl.conf" ]] || [ -n "$WSL_DISTRO_NAME" ]; then echo "Pi-Apps is not supported on WSL." return 1 - elif ([ "$__os_id" == "Debian" ] || [ "$__os_id" == "Raspbian" ]) && ! printf '%s\n' "10" "$__os_release" | sort -CV ; then + elif ([ "$__os_id" == "Debian" ] || [ "$__os_id" == "Raspbian" ]) && ! printf '%s\n' "11" "$__os_release" | sort -CV ; then echo "Pi-Apps is not supported on your outdated $__os_id $__os_release operating system. Expect many apps to fail. Consider upgrading your operating system." return 1 - elif [ "$__os_id" == "Ubuntu" ] && ! printf '%s\n' "18.04" "$__os_release" | sort -CV ; then + elif [ "$__os_id" == "Ubuntu" ] && ! printf '%s\n' "20.04" "$__os_release" | sort -CV ; then echo "Pi-Apps is not supported on your outdated $__os_id $__os_release operating system. Expect many apps to fail. Consider upgrading your operating system." return 1 elif echo "$PRETTY_NAME" | grep -qi 'manjaro'; then