From e112786c02d5b0bf7d03ec0a167b51c372dff02f Mon Sep 17 00:00:00 2001 From: Alfredo Monclus Date: Mon, 3 Jun 2024 14:22:20 -0300 Subject: [PATCH] installer: fix typos --- scripts/KlipperScreen-install.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/KlipperScreen-install.sh b/scripts/KlipperScreen-install.sh index 2fc03326..ee94e6fb 100755 --- a/scripts/KlipperScreen-install.sh +++ b/scripts/KlipperScreen-install.sh @@ -292,13 +292,13 @@ start_KlipperScreen() install_network_manager() { - if [ -z "$NETOWRK" ]; then + if [ -z "$NETWORK" ]; then echo "Press enter for default (Yes)" - read -r -e -p "Insall NetworkManager for the network panel [Y/n]" NETOWRK - if [[ $NETOWRK =~ ^[nN]$ ]]; then - echo_error "Not insalling NetworkManager for the network panel" + read -r -e -p "Install NetworkManager for the network panel [Y/n]" NETWORK + if [[ $NETWORK =~ ^[nN]$ ]]; then + echo_error "Not installing NetworkManager for the network panel" else - echo_ok "Insalling NetworkManager for the network panel" + echo_ok "Installing NetworkManager for the network panel" sudo apt install network-manager sudo systemctl -q disable dhcpcd 2> /dev/null sudo systemctl -q stop dhcpcd 2> /dev/null