From e0377322e42784d67d825621bf71723430ddd79f Mon Sep 17 00:00:00 2001 From: Botspot Date: Wed, 15 Sep 2021 13:23:53 -0500 Subject: [PATCH] api: is_supported_system: check for manjaro --- api | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/api b/api index c1a5f47..6ab16fa 100755 --- a/api +++ b/api @@ -405,8 +405,11 @@ is_supported_system() { elif cat /etc/os-release | grep PRETTY_NAME | tr -d '"' | awk -F= '{print $2}' | grep -qi 'stretch\|wheezy\|jessie';then echo "Pi-Apps is not supported on your outdated operating system. Expect many apps to fail. Consider upgrading your operating system." return 1 + elif cat /etc/os-release | grep PRETTY_NAME | tr -d '"' | awk -F= '{print $2}' | grep -qi 'manjaro';then + echo "Pi-Apps is not supported on Manjaro." + return 1 elif [[ "$(uname -m)" == armv6* ]];then - echo "Pi-Apps has not been tested on armv6 Raspberry Pi boards. Expect many apps to fail." + echo "Pi-Apps is not supported on ARMv6 Raspberry Pi boards. Expect some apps to fail." return 1 elif [ "$(id -u)" == 0 ]; then echo "Pi-Apps is not designed to be run as root user."