From e5768999e47377274574d36e39f8fe5cdc0b45cf Mon Sep 17 00:00:00 2001 From: JongChan Choi Date: Wed, 18 Sep 2024 13:22:07 +0900 Subject: [PATCH] chore: Update install.sh to support Asahi Linux --- scripts/install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/install.sh b/scripts/install.sh index 42a20862e..de816c407 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -37,6 +37,11 @@ if [ "$OS_TYPE" = "manjaro" ] || [ "$OS_TYPE" = "manjaro-arm" ]; then OS_TYPE="arch" fi +# Check if the OS is Asahi Linux, if so, change it to fedora +if [ "$OS_TYPE" = "fedora-asahi-remix" ]; then + OS_TYPE="fedora" +fi + # Check if the OS is popOS, if so, change it to ubuntu if [ "$OS_TYPE" = "pop" ]; then OS_TYPE="ubuntu"