Skip to content

Commit d8e472c

Browse files
authored
Use "error" instead of "warning" for self-update message (#13229)
Closes #13221
1 parent a9ab39a commit d8e472c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/uv/src/commands/self_update.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pub(crate) async fn self_update(
3838
"\n",
3939
"If you installed uv with pip, brew, or another package manager, update uv with `pip install --upgrade`, `brew upgrade`, or similar."
4040
),
41-
"warning".yellow().bold(),
41+
"error".red().bold(),
4242
":".bold()
4343
)
4444
)?;
@@ -62,7 +62,7 @@ pub(crate) async fn self_update(
6262
"\n",
6363
"The current executable is at `{}` but the standalone installer was used to install uv to `{}`. Are multiple copies of uv installed?"
6464
),
65-
"warning".yellow().bold(),
65+
"error".red().bold(),
6666
":".bold(),
6767
current_exe.simplified_display().bold().cyan(),
6868
receipt_prefix.simplified_display().bold().cyan()

0 commit comments

Comments
 (0)