This commit is contained in:
Vaishnav Abhijeet 2026-01-29 21:53:38 -05:00 committed by GitHub
commit 58b936135e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -222,9 +222,9 @@ enum WideAreaGatewayDiscovery {
process.executableURL = URL(fileURLWithPath: path)
process.arguments = args
let outPipe = Pipe()
let errPipe = Pipe()
process.standardOutput = outPipe
process.standardError = errPipe
process.standardError = FileHandle.nullDevice
do {
try process.run()