From 61bc884ff2b6ee249980effe8faf2375d6f100ef Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 13 Nov 2024 02:44:42 +0100 Subject: [PATCH] fix: Disable HTTP keepalives --- src/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install.sh b/src/install.sh index 2f96fcd..9691de9 100644 --- a/src/install.sh +++ b/src/install.sh @@ -54,7 +54,7 @@ downloadFile() { /run/progress.sh "$dest" "0" "$msg ([P])..." & - { wget "$url" -O "$dest" -q --timeout=30 --show-progress "$progress"; rc=$?; } || : + { wget "$url" -O "$dest" -q --timeout=30 --no-http-keep-alive --show-progress "$progress"; rc=$?; } || : fKill "progress.sh"