From 46316ebffa75e41bf649376672f19ea8349a991a Mon Sep 17 00:00:00 2001 From: SSU <103107905+SeolSongWoo@users.noreply.github.com> Date: Thu, 26 Jun 2025 02:52:45 +0900 Subject: [PATCH] fix(install): suppress scoop output to avoid nssm path pollution (#918) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Suppressed the output of “scoop install beszel-agent” to ensure the NSSM service path contains only the executable location. Closes #915 Co-authored-by: suseol --- supplemental/scripts/install-agent.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supplemental/scripts/install-agent.ps1 b/supplemental/scripts/install-agent.ps1 index a0b291e..3211495 100644 --- a/supplemental/scripts/install-agent.ps1 +++ b/supplemental/scripts/install-agent.ps1 @@ -182,7 +182,7 @@ function Install-BeszelAgentWithScoop { scoop bucket add beszel https://github.com/henrygd/beszel-scoops | Out-Null Write-Host "Installing / updating beszel-agent..." - scoop install beszel-agent + scoop install beszel-agent | Out-Null if (-not (Test-CommandExists "beszel-agent")) { throw "Failed to install beszel-agent"