-
Notifications
You must be signed in to change notification settings - Fork 893
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
rustup-init leaves user with colored terminal #2590
Comments
Thank you for your report, I shall try and reproduce this tonight. If anyone else reads this and knows what might be going on, please comment on the issue, I'm not a Windows developer by default. |
I've run into this before. It happens because |
What's odd is that there's no red in the rustup output at that point. So I wonder what we've done to the terminal that is causing that. |
Perhaps the Interrupt is colored (^C)? |
Oh and it appears that the bug only reproduces if you wait a few seconds at the first prompt. In that case the interrupt is red. Waiting up to 4 seconds before interrupting will actually show the beginning of an error, which could be why it's red... |
What error is it showing at that point? can you attach a screenshot? |
Oh interesting, I wonder if the control+C managed to give it some input before it killed it. |
but if I interrupt at different time intervals, things happen:
|
That is extremely odd. |
Could this be a bug with some sort of input-handling loop? Or maybe |
I guess possibly. I'm not entirely sure how the input loop behaves on Windows. |
OK... Is there any way that I can see |
the src/ tree is rustup and rustup-init - it's all open source. the code in question will be in src/cli/self_update.rs most likely |
OK, thanks! |
I'm not able to reproduce this, which is also odd. Are you able to investigate at all @Vbbab ? |
Hmm, I could try, but I'm not really familiar with Rust, sorry... Perhaps someone else with Windows and experience with Rust? |
I have a WIndows machine and would like to try to reproduce the error tomorrow. |
If you can reliably reproduce this then we stand a chance of diagnosing it, yes please @chansuke |
I tried to reproduce the error ( |
An update: There's some error message on my end now. Very rare chance of this actually occurring. The regular way is by hitting ctrl-c as soon as you arrive at the initial prompt, at which point a red
|
I think it was easier to reproduce with certain anti-viruses. I can't remember which but I think McAfee was one. |
@toothbrush7777777 Ah...thank you for the detailed information!! I will take a look again. |
I think you'd typically have to set the reset sequence (explictly print) on die. Line 33 in 90c8401
Like, at the end of these kinda functions + general execution, good to add a I mean, they could always die without reset-ting (and is a common issue with most commands in Unix as well, nothing new). They usually can handle that atexit / signal handler. |
BTW, another way to repro:
|
We need to check where all this can happen; What if there's a fault when printing something, or SIGKILL; If this is a signal handler, the at_exit patch I've posted can be easily re-written; Will figure out how to test it. My question to all is that is at_exit even a standard at this point? beta/stable compilers don't expose it. |
I don't think we're going to get to a stable-compatible solution to this problem in the 1.24.0 cycle so I'm going to defer this particular piece of work for 1.25.0 - if we fix it before 1.24.0 is branched then that's great, but I'm not going to hold up the release for it. I think we're approaching an idea of the fix, but with the need for |
@rustbot label: +O-windows |
(If this doesn't belong here, please tell me which repo to move it to, thanks!)
Problem
rustup
's setup script,rustup-init
, leaves the user with a colored terminal when exiting interrupted.Steps
rustup-init
Possible Solution(s)
Check the interrupted-exit code maybe? Make sure that the color is reset before exiting (Since
^C
is displayed in red)Notes
OS: Win 10 (1909)
Output of
rustup --version
:rustup 1.23.0 (00924c9ba 2020-11-27)
Output of
rustup-init --version
:rustup-init 1.22.1 (b01adbbc3 2020-07-08)
Output of
rustup show
:The text was updated successfully, but these errors were encountered: