mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00
write poetry output?
This commit is contained in:
parent
1d3ca95cc9
commit
751e76b358
1 changed files with 8 additions and 0 deletions
|
@ -806,6 +806,14 @@ impl SourceBuild {
|
|||
)
|
||||
.instrument(span)
|
||||
.await?;
|
||||
|
||||
for line in &output.stderr {
|
||||
debug!("{line}");
|
||||
}
|
||||
for line in &output.stdout {
|
||||
debug!("{line}");
|
||||
}
|
||||
|
||||
if !output.status.success() {
|
||||
return Err(Error::from_command_output(
|
||||
format!(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue