Merge pull request #1330 from seii/fix/raspbian-support

Add Raspbian support to install.sh
This commit is contained in:
Andras Bacsai 2023-10-17 09:50:57 +02:00 committed by GitHub
commit 83d6e488e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ if [ $EUID != 0 ]; then
echo "Please run as root"
exit
fi
if [ $OS_TYPE != "ubuntu" ] && [ $OS_TYPE != "debian" ]; then
if [ $OS_TYPE != "ubuntu" ] && [ $OS_TYPE != "debian" ] && [ $OS_TYPE != "raspbian" ]; then
echo "This script only supports Ubuntu and Debian for now."
exit
fi