Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
samypr100 committed Jun 4, 2024
1 parent f6b2463 commit b8c4a56
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/uv/src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ impl GlobalSettings {
verbose: args.verbose,
color: if args.no_color || std::env::var_os("NO_COLOR").is_some() {
ColorChoice::Never
} else if std::env::var_os("FORCE_COLOR").is_some() || std::env::var_os("CLICOLOR_FORCE").is_some() {
} else if std::env::var_os("FORCE_COLOR").is_some()
|| std::env::var_os("CLICOLOR_FORCE").is_some()
{
ColorChoice::Always
} else {
args.color
Expand Down

0 comments on commit b8c4a56

Please sign in to comment.