fix(macos): resolve clawdis path for health check

This commit is contained in:
Peter Steinberger
2025-12-07 14:49:18 +01:00
parent 4d2f4f1be3
commit 28b531593a

View File

@@ -94,7 +94,7 @@ final class HealthStore: ObservableObject {
defer { self.isRefreshing = false }
let response = await ShellRunner.run(
command: ["clawdis", "health", "--json"],
command: CommandResolver.clawdisCommand(subcommand: "health", extraArgs: ["--json"]),
cwd: nil,
env: nil,
timeout: 15)