Added support for Endeavour OS as arch

This commit is contained in:
Luna Midori
2024-11-27 22:37:18 -08:00
committed by GitHub
parent bdf411a1fc
commit daa2700b1c

View File

@@ -83,6 +83,11 @@ if [ "$OS_TYPE" = "manjaro" ] || [ "$OS_TYPE" = "manjaro-arm" ]; then
OS_TYPE="arch" OS_TYPE="arch"
fi fi
# Check if the OS is Endeavour OS, if so, change it to arch
if [ "$OS_TYPE" = "endeavouros" ]; then
OS_TYPE="arch"
fi
# Check if the OS is Asahi Linux, if so, change it to fedora # Check if the OS is Asahi Linux, if so, change it to fedora
if [ "$OS_TYPE" = "fedora-asahi-remix" ]; then if [ "$OS_TYPE" = "fedora-asahi-remix" ]; then
OS_TYPE="fedora" OS_TYPE="fedora"