//go:build !windows package syncthing import "os/exec" // createSyncthingCmd creates the Syncthing command on Unix. func createSyncthingCmd() *exec.Cmd { path := findSyncthing() if path == "" { return nil } return exec.Command(path, "-no-browser", "-no-restart") }