From e9d569c47eb9be61ea7668f6841c7ae10f940488 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Thu, 15 Feb 2024 21:04:56 +0100 Subject: [PATCH] Updated the install.sh --- install.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/install.sh b/install.sh index f519c6f..ac716c6 100644 --- a/install.sh +++ b/install.sh @@ -15,9 +15,7 @@ function error() { } function download() { - if wget -S --spider "$1" 2>&1 | grep -q 'HTTP/1.1 200 OK'; then - wget -q --show-progress -O "$2" "$1" - fi + wget -q --show-progress -O "$2" "$1" } echo -e "${GREEN}Installing dependencies${NC}"