From 15d7f75507651f58f5961941fdaecbd97c5b4128 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Fri, 3 Jan 2025 22:29:40 -0800 Subject: [PATCH] femtofox butfix @noon92 this fixes the problem you saw --- install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index e526ba8..59a8200 100755 --- a/install.sh +++ b/install.sh @@ -8,7 +8,8 @@ printf "\n########################" printf "\nMeshing Around Installer\n" printf "########################\n" printf "\nThis script will try and install the Meshing Around Bot and its dependencies." -printf "Installer works best in raspian/debian/ubuntu, if there is a problem, try running the installer again.\n" +printf "Installer works best in raspian/debian/ubuntu or foxbuntu embedded systems.\n" +printf "If there is a problem, try running the installer again.\n" printf "\nChecking for dependencies...\n" # check if we are in /opt/meshing-around @@ -90,7 +91,7 @@ cp config.template config.ini printf "\nConfig files generated!\n" # check if running on embedded -if [[ $(echo "${embedded}" | grep -iq "^y") ]]; then +if [[ $(echo "${embedded}" | grep -i "^y") ]]; then printf "\nDetected embedded skipping venv\n" else printf "\nRecomended install is in a python virtual environment, do you want to use venv? (y/n)"