From dac2ae02b289eb084ca0d991546651bc59387268 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Mon, 12 May 2025 12:54:33 +0200 Subject: [PATCH] Update core.func --- misc/core.func | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/core.func b/misc/core.func index 9b167cc..87488a4 100644 --- a/misc/core.func +++ b/misc/core.func @@ -110,9 +110,9 @@ silent() { run_curl() { if [ "$VERBOSE" = "no" ]; then - curl "$@" >/dev/null 2>>/tmp/curl_error.log + $STD curl "$@" else - curl "$@" 2>>/tmp/curl_error.log + curl "$@" fi }