Skip to content

Commit

Permalink
Add Raspbian support to install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
seii authored Oct 17, 2023
1 parent 62e39cc commit a4d358d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a4d358d

Please sign in to comment.