From d45235043fff72238f842221440f7d56a898cc71 Mon Sep 17 00:00:00 2001 From: tteckster Date: Wed, 27 Apr 2022 18:30:12 -0400 Subject: [PATCH] Update debian-install.sh --- setup/debian-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/debian-install.sh b/setup/debian-install.sh index 1ba1d293..f9e7b5ee 100644 --- a/setup/debian-install.sh +++ b/setup/debian-install.sh @@ -57,7 +57,7 @@ msg_ok "Network Connected: ${BL}$(hostname -I)" msg_info "Checking Internet Status" INTER=$(wget -q --tries=10 --timeout=5 --spider https://google.com) sleep 2 -if [[ $INTER -eq 0 ]]; then +if [[ $INTER eq 0 ]]; then msg_ok "Internet Online" else echo -e "${CROSS}${RD} Internet Offline"