From f4f80dc066643a06bb4e9dd897685cf1cf103e16 Mon Sep 17 00:00:00 2001 From: Luke Faraone Date: Thu, 6 Jul 2017 17:50:26 +0000 Subject: [PATCH] Don't disable certificate checking in wget While cert errors are annoying, it's better to fix them than be MITMed. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index bf231e1..2c8f898 100755 --- a/install.sh +++ b/install.sh @@ -14,7 +14,7 @@ exec 2>&1 if has "wget"; then DOWNLOAD() { - wget --no-check-certificate -nc -O "$2" "$1" + wget -nc -O "$2" "$1" } elif has "curl"; then DOWNLOAD() {