-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
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
cargo run
no longer passes a stdin handle to child.
#2530
Comments
cargo run
no longer passes a stdin handle.cargo run
no longer passes a stdin handle to child.
I believe I saw another thing about this today; but I can't find it. Something about Rust 1.6 bs 1.9. I thought it was on users, but maybe not... To be clear, it was someone else surprised by this behavior. On Mar 29, 2016, 17:11 -0700, Brian Andersonnotifications@github.com, wrote:
|
Found it!http://stackoverflow.com/q/36295576/24817 On Mar 29, 2016, 17:11 -0700, Brian Andersonnotifications@github.com, wrote:
|
Update Rust to pick up rust-lang/rust#32257 Closes #2530
Yeah this is an instance of rust-lang/rust#32254 which was introduced by rust-lang/rust#31618 and fixed in rust-lang/rust#32257. Cargo upgraded to a "broken rustc" in #2510 and I hope to fix this in #2531 |
Until today I could run
cargo run --release
against rustup to kick off the interactive installer, which reads a byte from stdin for confirmation. As of today when I do this rustup exits with an error. Callingstd::stdin().lock().lines().next()
returnsNone
where it used to returnSome
.Working rustc / cargo:
Failing rustc / cargo:
The text was updated successfully, but these errors were encountered: