Merge pull request #4424 from lunamidori5/main

Added support for Endeavour OS as arch
This commit is contained in:
🏔️ Peak 2024-11-28 14:25:12 +01:00 committed by GitHub
commit a608828c92
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -83,6 +83,11 @@ if [ "$OS_TYPE" = "manjaro" ] || [ "$OS_TYPE" = "manjaro-arm" ]; then
OS_TYPE="arch"
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
if [ "$OS_TYPE" = "fedora-asahi-remix" ]; then
OS_TYPE="fedora"