From 727ea16769da9825297b6ce78b9c4e913fe8e87d Mon Sep 17 00:00:00 2001 From: jutty Date: Wed, 25 Feb 2026 01:51:05 -0300 Subject: [PATCH] CI: Add curl -f fail flag to extra tools binary fetching --- .forgejo/workflows/setup-tools.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/setup-tools.sh b/.forgejo/workflows/setup-tools.sh index a47248a..cd38738 100755 --- a/.forgejo/workflows/setup-tools.sh +++ b/.forgejo/workflows/setup-tools.sh @@ -18,7 +18,7 @@ fetch() { [ -d /tmp/tools ] || mkdir -p /tmp/tools - curl -sSLO --output-dir /tmp \ + curl -fsSLO --output-dir /tmp \ -w '%{stderr}HTTP %{response_code} %{url}\n' \ "https://github.com/$repo/releases/download/$tag/$filename"