From d8796a171dced43a4031b5f8dad5f2a90a8de8fa Mon Sep 17 00:00:00 2001 From: epushor <55315477+epushor@users.noreply.github.com> Date: Thu, 23 Jul 2020 23:37:19 +0300 Subject: [PATCH] Update install.sh wget option will not work with http but instead with https - or remove the entire line, the program will not install. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 6cdc8a6..afdfcef 100644 --- a/install.sh +++ b/install.sh @@ -39,7 +39,7 @@ INSTALL_DIR="/usr/share/doc/hackingtool" BIN_DIR="/usr/bin/" if [ $choice == 1 ]; then echo "[*] Checking Internet Connection .." - wget -q --tries=10 --timeout=20 --spider http://google.com + wget -q --tries=10 --timeout=20 --spider https://google.com if [[ $? -eq 0 ]]; then echo -e ${BLUE}"[✔] Loading ... " sudo apt-get update && apt-get upgrade