From a4d358d512ea05081b4485d8757877fae1ca7956 Mon Sep 17 00:00:00 2001 From: Seii Date: Mon, 16 Oct 2023 22:11:51 -0600 Subject: [PATCH] Add Raspbian support to install.sh --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index c6f702c9b..9ea40c8c2 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -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