We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d93c57c commit 3286f31Copy full SHA for 3286f31
1 file changed
Core/Sources/Service/Helpers.swift
@@ -16,6 +16,10 @@ func runAppleScript(_ appleScript: String) async throws -> String {
16
task.arguments = ["-e", appleScript]
17
let outpipe = Pipe()
18
task.standardOutput = outpipe
19
+ #if DEBUG
20
+ #else
21
+ task.standardError = Pipe()
22
+ #endif
23
24
return try await withUnsafeThrowingContinuation { continuation in
25
do {
0 commit comments