From b8c147ebfc3ff50dccabf1acc8a8eb96baff0e9e Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Thu, 12 Mar 2026 14:27:06 +0100 Subject: [PATCH] fixes --- misc/alpine-tools.func | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/alpine-tools.func b/misc/alpine-tools.func index 9386f737a..bc9b557a2 100644 --- a/misc/alpine-tools.func +++ b/misc/alpine-tools.func @@ -211,7 +211,7 @@ download_with_progress() { return 1 } else - curl -fL# -o "$out" "$url" || { + curl -fsSL -o "$out" "$url" || { msg_error "Download failed: $url" return 1 }