From 37414e0a4fa018eacfb60e368c608b50f6fb23dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ask=20Bj=C3=B8rn=20Hansen?= Date: Mon, 13 Apr 2026 21:14:37 -0700 Subject: [PATCH] build(scripts): update release download host and show curl errors - download-release: switch base URL from geodns.bitnames.com to builds.ntppool.dev - fury-publish: use curl -Ssf so errors surface even in silent mode --- scripts/download-release | 2 +- scripts/fury-publish | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/download-release b/scripts/download-release index a79a376..66ca0df 100755 --- a/scripts/download-release +++ b/scripts/download-release @@ -13,7 +13,7 @@ fi mkdir -p $DIR -BASE=https://geodns.bitnames.com/${BASE}/builds/${BUILD} +BASE=https://builds.ntppool.dev/${BASE}/builds/${BUILD} files=`curl -sSf ${BASE}/checksums.txt | sed 's/^[a-f0-9]*[[:space:]]*//'` metafiles="checksums.txt metadata.json CHANGELOG.md artifacts.json" diff --git a/scripts/fury-publish b/scripts/fury-publish index fcd9511..2e6ee57 100755 --- a/scripts/fury-publish +++ b/scripts/fury-publish @@ -11,5 +11,5 @@ fi for f in dist/*.rpm dist/*.deb; do echo Uploading $f - curl -sf -F package=@$f https://${FURY_TOKEN}@push.fury.io/${account}/ + curl -Ssf -F package=@$f https://${FURY_TOKEN}@push.fury.io/${account}/ done