Merge pull request #2391 from kkhomej33-netizen/fix/macos-pty-sandbox-rules

fix(cli): allow /dev/ptmx and /dev/ttys* in macOS permissive sandbox
This commit is contained in:
tanzhenxin 2026-03-15 22:33:40 +08:00 committed by GitHub
commit 06d8a01532
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,4 +22,6 @@
(literal "/dev/stdout")
(literal "/dev/stderr")
(literal "/dev/null")
)
(literal "/dev/ptmx")
(regex #"^/dev/ttys[0-9]*$")
)