Add bullseye to i2samp version check
This commit is contained in:
parent
67b8103437
commit
99535aa278
1 changed files with 2 additions and 0 deletions
|
|
@ -228,6 +228,8 @@ raspbian_check() {
|
||||||
if [ -f /etc/os-release ]; then
|
if [ -f /etc/os-release ]; then
|
||||||
if cat /etc/os-release | grep "/sid" > /dev/null; then
|
if cat /etc/os-release | grep "/sid" > /dev/null; then
|
||||||
IS_SUPPORTED=false && IS_EXPERIMENTAL=true
|
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
|
elif cat /etc/os-release | grep "buster" > /dev/null; then
|
||||||
IS_SUPPORTED=false && IS_EXPERIMENTAL=true
|
IS_SUPPORTED=false && IS_EXPERIMENTAL=true
|
||||||
elif cat /etc/os-release | grep "stretch" > /dev/null; then
|
elif cat /etc/os-release | grep "stretch" > /dev/null; then
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue