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
commit 4f5102b2dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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