fix(install): suppress scoop output to avoid nssm path pollution (#918)

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 <suseol@geosr.com>
This commit is contained in:
SSU
2025-06-26 02:52:45 +09:00
committed by GitHub
parent 0b04f60b6c
commit 46316ebffa

View File

@@ -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"