From b83e06d5e080988292fcc754891b7f7fc0201e2b Mon Sep 17 00:00:00 2001 From: Abhishek Kumar <57870999+helocoder@users.noreply.github.com> Date: Fri, 17 Feb 2023 07:32:34 +0530 Subject: [PATCH] Add support for garuda linux to install file --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install b/install index 8a75954f0..04f79eb7f 100755 --- a/install +++ b/install @@ -89,7 +89,7 @@ install_linux() { DISTRO_ID=$(cat /etc/os-release | grep ID= | grep -v "BUILD" | grep -v "IMAGE" | cut -d= -f2-) if [ "${DISTRO_ID}" = 'kali' ]; then Distro='Kali' - elif [ "${DISTRO_ID}" = 'arch' ] || [ "${DISTRO_ID}" = 'artix' ] || [ "${DISTRO_ID}" = 'manjaro' ] || [ "${DISTRO_ID}" = 'blackarch' ] || [ "${DISTRO_ID}" = 'arcolinux' ]; then + elif [ "${DISTRO_ID}" = 'arch' ] || [ "${DISTRO_ID}" = 'garuda' ] || [ "${DISTRO_ID}" = 'artix' ] || [ "${DISTRO_ID}" = 'manjaro' ] || [ "${DISTRO_ID}" = 'blackarch' ] || [ "${DISTRO_ID}" = 'arcolinux' ]; then Distro='Arch' elif cat /etc/os-release | grep -Eqi '^ID.*suse'; then Distro='SuSE'