We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This will ignore the args in the std::process::Command:
std::process::Command
let mut cmd = std::process::Command::new("some_command"); cmd.env("some", "value").args(&["arg1"]); let p = expectrl::Session::spawn(cmd).unwrap();
This seems to be because conpty 0.3 does not do anything with the arguments (maybe I'm misreading the code though):
https://github.com/zhiburt/conpty/blob/de641e6cf33ad5176e6090318c4723716bdc964c/src/lib.rs#L270 https://github.com/zhiburt/conpty/blob/de641e6cf33ad5176e6090318c4723716bdc964c/src/lib.rs#L398C47-L437
The text was updated successfully, but these errors were encountered:
So I bet you're right; I believe it was fixed a few weeks ago, but not released yet.
I'll release it after #62
Sorry, something went wrong.
try a new version expectrl = 0.7, I believe it must be addressed here.
expectrl = 0.7
zhiburt/expectrl#63 says this should be resolved now.
67a8899
No branches or pull requests
This will ignore the args in the
std::process::Command
:This seems to be because conpty 0.3 does not do anything with the arguments (maybe I'm misreading the code though):
https://github.com/zhiburt/conpty/blob/de641e6cf33ad5176e6090318c4723716bdc964c/src/lib.rs#L270
https://github.com/zhiburt/conpty/blob/de641e6cf33ad5176e6090318c4723716bdc964c/src/lib.rs#L398C47-L437
The text was updated successfully, but these errors were encountered: