add zorin as a os type

This commit is contained in:
Rishikesh S 2024-06-12 19:04:00 +05:30
parent de7380fb0c
commit 19b38074a5

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