fix: safesightd.ps1编译入口改为cmd/safesightd

This commit is contained in:
tian 2026-07-26 13:36:12 +08:00
parent cf687a7b5d
commit 8f7467bb63

View File

@ -85,7 +85,7 @@ function Invoke-Build {
Write-Info "编译 safesightd.exe ..."
Push-Location $rootDir
try {
& go build -o $exePath .\cmd\managerd
& go build -o $exePath .\cmd\safesightd
if ($LASTEXITCODE -ne 0) {
throw "go build failed with exit code $LASTEXITCODE"
}