Updated the install.sh

This commit is contained in:
2024-02-15 21:02:54 +01:00
parent 16c41a4465
commit 63081f8919

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 -q --show-progress "$2" "$1" wget -q --show-progress -O "$2" "$1"
fi fi
} }