Skip to content
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

Say which Julia binary is updated when updating #867

Open
eschnett opened this issue Mar 14, 2024 · 2 comments · Fixed by #887
Open

Say which Julia binary is updated when updating #867

eschnett opened this issue Mar 14, 2024 · 2 comments · Fixed by #887
Labels
enhancement New feature or request good first issue Good for newcomers help wanted Extra attention is needed
Milestone

Comments

@eschnett
Copy link

When I type juliaup update, and when it's time to update, then juliaup only says

  Downloading: [=============>      ] 138.80 MiB/204.70 MiB eta: 12s

It doesn't say which Julia binary is being updated – that would be nice to know. For example, a line updating alpha, or Downloading nightly: [====> would be convenient.

@davidanthoff davidanthoff added enhancement New feature or request help wanted Extra attention is needed good first issue Good for newcomers labels Mar 14, 2024
@davidanthoff davidanthoff added this to the Backlog milestone Mar 14, 2024
@davidanthoff davidanthoff reopened this May 15, 2024
@davidanthoff
Copy link
Collaborator

I just reverted #887, I think that was too chatty with lots of output about things that juliaup up didn't do.

I'm also a bit confused about the original issue here, doesn't the line above the "Downloading:" actually say which version is being installed?

@ghyatzo
Copy link
Contributor

ghyatzo commented May 15, 2024

From the install_version function there is the code:

    eprintln!(
        "{} Julia {}",
        style("Installing").green().bold(),
        fullversion
    );

that prints fullversion, it could be easily extended to add some channel information:

    eprintln!(
        "{} Julia {} on channel {}",
        style("Installing").green().bold(),
        fullversion,
        channel
    );

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers help wanted Extra attention is needed
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants