Add bullseye to i2samp version check

This commit is contained in:
Melissa LeBlanc-Williams 2021-11-10 09:54:14 -08:00
parent 67b8103437
commit 99535aa278

View file

@ -228,6 +228,8 @@ raspbian_check() {
if [ -f /etc/os-release ]; then
if cat /etc/os-release | grep "/sid" > /dev/null; then
IS_SUPPORTED=false && IS_EXPERIMENTAL=true
elif cat /etc/os-release | grep "bullseye" > /dev/null; then
IS_SUPPORTED=false && IS_EXPERIMENTAL=true
elif cat /etc/os-release | grep "buster" > /dev/null; then
IS_SUPPORTED=false && IS_EXPERIMENTAL=true
elif cat /etc/os-release | grep "stretch" > /dev/null; then