Merge pull request #6127 from flickowoa/patch-1

interpret cachyos as arch in the install script
This commit is contained in:
Andras Bacsai
2025-07-07 10:35:42 +02:00
committed by GitHub

View File

@@ -253,6 +253,11 @@ if [ "$OS_TYPE" = "endeavouros" ]; then
OS_TYPE="arch" OS_TYPE="arch"
fi fi
# Check if the OS is Cachy OS, if so, change it to arch
if [ "$OS_TYPE" = "cachyos" ]; 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"