Merge pull request #3472 from disjukr/asahi-linux

Add support to install.sh for Asahi Linux
This commit is contained in:
Andras Bacsai
2024-09-23 11:29:26 +02:00
committed by GitHub

View File

@@ -37,6 +37,11 @@ if [ "$OS_TYPE" = "manjaro" ] || [ "$OS_TYPE" = "manjaro-arm" ]; then
OS_TYPE="arch" OS_TYPE="arch"
fi 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 # Check if the OS is popOS, if so, change it to ubuntu
if [ "$OS_TYPE" = "pop" ]; then if [ "$OS_TYPE" = "pop" ]; then
OS_TYPE="ubuntu" OS_TYPE="ubuntu"