Fix bd daemon command syntax and flags (#522)

This commit is contained in:
Evan Jacobson
2026-01-17 01:00:50 -07:00
committed by GitHub
parent d4026b79cf
commit 11b38294d4
3 changed files with 8 additions and 8 deletions

View File

@@ -124,7 +124,7 @@ func restartBdDaemons() error { //nolint:unparam // error return kept for future
// StartBdDaemonIfNeeded starts the bd daemon for a specific workspace if not running.
// This is a best-effort operation - failures are logged but don't block execution.
func StartBdDaemonIfNeeded(workDir string) error {
cmd := exec.Command("bd", "daemon", "--start")
cmd := exec.Command("bd", "daemon", "start")
cmd.Dir = workDir
return cmd.Run()
}