Merge pull request #2494 from rishikesh2003/fix/add-zorin-os-type

fixadd zorin as a os type
This commit is contained in:
Andras Bacsai
2024-06-13 12:28:19 +02:00
committed by GitHub

5
scripts/install.sh Normal file → Executable file
View File

@@ -27,6 +27,11 @@ if [ "$OS_TYPE" = "linuxmint" ]; then
OS_TYPE="ubuntu"
fi
#Check if the OS is zorin, if so, change it to ubuntu
if [ "$OS_TYPE" = "zorin" ]; then
OS_TYPE="ubuntu"
fi
if [ "$OS_TYPE" = "arch" ] || [ "$OS_TYPE" = "archarm" ]; then
OS_VERSION="rolling"
else