Respect --quiet flag in uv build (#7674)

I noticed this was not respected, seems like an oversight.
This commit is contained in:
Zanie Blue 2024-09-25 08:23:43 -05:00 committed by GitHub
parent 84e5f6e871
commit 12ab7d1ab7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 105 additions and 27 deletions

View file

@ -31,6 +31,8 @@ pub enum BuildOutput {
Stderr,
/// Send the build backend output to `tracing`.
Debug,
/// Do not display the build backend output.
Quiet,
}
#[derive(Debug, Default, Clone, PartialEq, Eq, serde::Serialize, serde::Deserialize)]