mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-03 18:38:21 +00:00
Use "error" instead of "warning" for self-update message (#13229)
Closes https://github.com/astral-sh/uv/issues/13221
This commit is contained in:
parent
a9ab39ad6f
commit
d8e472cfa8
1 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@ pub(crate) async fn self_update(
|
|||
"\n",
|
||||
"If you installed uv with pip, brew, or another package manager, update uv with `pip install --upgrade`, `brew upgrade`, or similar."
|
||||
),
|
||||
"warning".yellow().bold(),
|
||||
"error".red().bold(),
|
||||
":".bold()
|
||||
)
|
||||
)?;
|
||||
|
@ -62,7 +62,7 @@ pub(crate) async fn self_update(
|
|||
"\n",
|
||||
"The current executable is at `{}` but the standalone installer was used to install uv to `{}`. Are multiple copies of uv installed?"
|
||||
),
|
||||
"warning".yellow().bold(),
|
||||
"error".red().bold(),
|
||||
":".bold(),
|
||||
current_exe.simplified_display().bold().cyan(),
|
||||
receipt_prefix.simplified_display().bold().cyan()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue