Updated the install.sh

This commit is contained in:
Mathias Wagner 2024-02-15 21:02:36 +01:00
parent 7725bc665a
commit 16c41a4465
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -16,7 +16,7 @@ function error() {
function download() { function download() {
if wget -S --spider "$1" 2>&1 | grep -q 'HTTP/1.1 200 OK'; then if wget -S --spider "$1" 2>&1 | grep -q 'HTTP/1.1 200 OK'; then
wget -qO "$2" "$1" wget -q --show-progress "$2" "$1"
fi fi
} }