Skip to content

Commit

Permalink
Fix incorrect debian/raspbian detection
Browse files Browse the repository at this point in the history
  • Loading branch information
vicwomg committed Jan 19, 2024
1 parent 1c016f6 commit 9cd74cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if [ $REPLY = "y" ]

## setup stuff

if [[ $(cat /etc/os-release | grep ^ID= | grep -i debian) != "" ]]; then
if [[ $(cat /etc/os-release | grep ^ID= | grep -i 'debian\|raspbian') != "" ]]; then
echo "Client is a Debian-based system. Installing binaries";
echo
echo "*** RUNNING APT-GET UPDATE ***"
Expand Down

0 comments on commit 9cd74cd

Please sign in to comment.