From 370c5a3c550583534411ba1d3207dfb93c8a7fca Mon Sep 17 00:00:00 2001 From: Craig Schardt Date: Fri, 29 Dec 2023 15:27:23 -0600 Subject: [PATCH] forgot a fi --- scripts/install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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..."