From 289eacba726ac33b6c5d8574b9125eca63e5cd49 Mon Sep 17 00:00:00 2001 From: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Date: Fri, 21 Nov 2025 11:41:37 +0100 Subject: [PATCH] Update go get command to use -d=true flag --- tools/addon/qbittorrent-exporter.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/addon/qbittorrent-exporter.sh b/tools/addon/qbittorrent-exporter.sh index 23b53bb39..843d3a4f9 100644 --- a/tools/addon/qbittorrent-exporter.sh +++ b/tools/addon/qbittorrent-exporter.sh @@ -65,7 +65,7 @@ if [[ -f "$INSTALL_PATH" ]]; then setup_go msg_info "Updating ${APP}" cd /opt/qbittorrent-exporter - /usr/local/bin/go get -d -v + /usr/local/bin/go get -d=true -v cd src /usr/local/bin/go build -o ./qbittorrent-exporter msg_ok "Updated ${APP}" @@ -98,7 +98,7 @@ fetch_and_deploy_gh_release "qbittorrent-exporter" "martabal/qbittorrent-exporte setup_go msg_info "Installing ${APP} on ${OS}" cd /opt/qbittorrent-exporter -/usr/local/bin/go get -d -v +/usr/local/bin/go get -d=true -v cd src /usr/local/bin/go build -o ./qbittorrent-exporter msg_ok "Installed ${APP}"