From 11c20e39dadb782d8f1d775ae699a678865f1c01 Mon Sep 17 00:00:00 2001 From: CrazyWolf13 Date: Mon, 8 Dec 2025 15:04:26 +0100 Subject: [PATCH] fix std --- tools/addon/pihole-exporter.sh | 4 ++-- tools/addon/qbittorrent-exporter.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/addon/pihole-exporter.sh b/tools/addon/pihole-exporter.sh index 6724dc0d..2a595355 100644 --- a/tools/addon/pihole-exporter.sh +++ b/tools/addon/pihole-exporter.sh @@ -58,7 +58,7 @@ if [[ -f "$INSTALL_PATH" ]]; then setup_go msg_info "Updating pihole-exporter" cd /opt/pihole-exporter/ - /usr/local/bin/go build -o ./pihole-exporter + $STD /usr/local/bin/go build -o ./pihole-exporter msg_ok "Updated Successfully!" fi exit 0 @@ -93,7 +93,7 @@ fetch_and_deploy_gh_release "pihole-exporter" "eko/pihole-exporter" "tarball" "l setup_go msg_info "Installing pihole-exporter on ${OS}" cd /opt/pihole-exporter/ -/usr/local/bin/go build -o ./pihole-exporter +$STD /usr/local/bin/go build -o ./pihole-exporter msg_ok "Installed pihole-exporter" msg_info "Creating configuration" diff --git a/tools/addon/qbittorrent-exporter.sh b/tools/addon/qbittorrent-exporter.sh index 653a906f..03e45980 100644 --- a/tools/addon/qbittorrent-exporter.sh +++ b/tools/addon/qbittorrent-exporter.sh @@ -58,7 +58,7 @@ if [[ -f "$INSTALL_PATH" ]]; then setup_go msg_info "Updating qbittorrent-exporter" cd /opt/qbittorrent-exporter/src - /usr/local/bin/go build -o ./qbittorrent-exporter + $STD /usr/local/bin/go build -o ./qbittorrent-exporter msg_ok "Updated Successfully!" fi exit 0 @@ -90,7 +90,7 @@ fetch_and_deploy_gh_release "qbittorrent-exporter" "martabal/qbittorrent-exporte setup_go msg_info "Installing qbittorrent-exporter on ${OS}" cd /opt/qbittorrent-exporter/src -/usr/local/bin/go build -o ./qbittorrent-exporter +$STD /usr/local/bin/go build -o ./qbittorrent-exporter msg_ok "Installed qbittorrent-exporter" msg_info "Creating configuration"