You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use tokio_pty_process::PtyMaster;fnmain(){let pty = tokio_pty_process::AsyncPtyMaster::open().unwrap();
pty.resize(24,80).unwrap();}
gives me:
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: Os { code: 25, kind: Uncategorized, message: "Inappropriate ioctl for device" }', src/bin/foo.rs:6:22
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Thanks for reporting! Do you think that a change along the lines of the one described in doy/pty-process#7 (comment) would help here?
Unfortunately I'm not currently able to put time into proactively maintaining this crate, but I will be happy to review and merge pull requests if you (or anyone else) would like to tackle this issue.
This:
gives me:
See also doy/pty-process#7 (comment).
The text was updated successfully, but these errors were encountered: