@cryptotaxi247 / netdata / commits / 53f7d8c5c

Silence output from curl in netdata-updater.sh (#22639)

Andrew J. Caines committed Jun 8, 2026 at 07:31 UTC 53f7d8c5c3079082a16ae7dc7f2ff472f9f24b15
1 file changed +1 -1
packaging/installer/netdata-updater.sh
+1 -1
@@ -623,7 +623,7 @@ _safe_download() {
623
624 if [ -n "${curl}" ]; then
625 set +e
626 - "${curl}" --fail --location --write-out "%{http_code}" --connect-timeout 10 --retry 3 "${url}" --output "${dest}" > "${dl_log}"
626 + "${curl}" --silent --fail --location --write-out "%{http_code}" --connect-timeout 10 --retry 3 "${url}" --output "${dest}" > "${dl_log}"
627 result="$?"
628 set -e
629