fix: remove :input :interactive from stty size subprocess

:input :interactive causes uiop to block on /dev/tty in the parent.
stty size queries terminal via ioctl, not stdin — no input
redirection needed.
This commit is contained in:
2026-05-14 14:30:17 -04:00
parent ce7af16b13
commit 733ba7c1b8
2 changed files with 2 additions and 4 deletions

View File

@@ -27,7 +27,6 @@
(ignore-errors
(let* ((out (uiop:run-program '("stty" "size")
:output :string
:input :interactive
:ignore-error-status t))
(parts (and out (uiop:split-string
(string-trim '(#\newline #\space) out)))))