Mac: allow signed CLI + same-uid XPC clients

This commit is contained in:
Peter Steinberger
2025-12-07 02:48:24 +00:00
parent 40013c2b61
commit 3c61524f26
2 changed files with 18 additions and 19 deletions

View File

@@ -222,6 +222,8 @@ struct ClawdisCLI {
let proc = Process()
proc.launchPath = "/usr/bin/open"
proc.arguments = ["-n", appURL.path]
proc.standardOutput = Pipe()
proc.standardError = Pipe()
try proc.run()
try? await Task.sleep(nanoseconds: 100_000_000)
}