-
Notifications
You must be signed in to change notification settings - Fork 17.6k
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
Add progress bar for go get command #18388
Comments
#17959 was about adding some kind of feedback/output (possibly a progress bar) to |
Yeah, dup of #17959 I personally think it would be okay to play terminal-detection games and only do a curses progress UI if the terminal supports such things, but the Go tools are pretty opinionated against terminals, ASCII art, and color, so I don't see this happening. I recommend somebody prototype this first as an external tool (you could run I'd say come back with code, with the understanding that it might be fated to live out of tree. |
@bradfitz I guess we don't need any kind of fancy stuff. It will be just simple bar. |
Prototype away. |
One simple solution is to (buffer and) show the underlying VCS
command output if the commands executes longer than, say,
a few seconds?
Of course, we need to persuade the VCS command to always
generate progress output even when its stdout is a pipe. But
I think that's certainly doable.
|
It would be good to have a bar on terminal showing progress of package downloading process.
The text was updated successfully, but these errors were encountered: