Skip to content

Commit

Permalink
Merge pull request #39 from stg7/master
Browse files Browse the repository at this point in the history
changes for support rasbian bullseye, to solve issue #38
  • Loading branch information
Gadgetoid authored Jan 19, 2022
2 parents bad08dd + f3dd91e commit 0975478
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion projects/vlc-radio/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,12 @@ raspbian_check() {
if [ -f /etc/os-release ]; then
if cat /etc/os-release | grep -q "/sid"; then
IS_SUPPORTED=false && IS_EXPERIMENTAL=true
elif cat /etc/os-release | grep -q "bullseye"; then
IS_SUPPORTED=true && IS_EXPERIMENTAL=false
pkgdeplist=${pkgdeplist_buster[@]}
elif cat /etc/os-release | grep -q "buster"; then
IS_SUPPORTED=true && IS_EXPERIMENTAL=false
pkgdeplist=${pkgdeplist_buster[@]}
pkgdeplist=${pkgdeplist_buster[@]}
elif cat /etc/os-release | grep -q "stretch"; then
IS_SUPPORTED=false && IS_EXPERIMENTAL=true
elif cat /etc/os-release | grep -q "jessie"; then
Expand Down

0 comments on commit 0975478

Please sign in to comment.