diff --git a/scripts/install.sh b/scripts/install.sh index 0a0bee3315..c111bd5c0e 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -39,9 +39,10 @@ INSTALL_NETWORK_MANAGER="false" if [ "$DISTRO" = "Ubuntu" ]; then echo "" echo "Photonvision uses NetworkManager to control networking on your device." - read -p "Do you want this script to install and configure NetworkManager? [y/N]" response + read -p "Do you want this script to install and configure NetworkManager? [y/N]: " response if [[ $response == [yY] || $response == [yY][eE][sS] ]]; then INSTALL_NETWORK_MANAGER="true" + fi fi echo "Installing curl..."