Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/notes/2.32.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ For `generate-lockfiles`, typos in the name of a resolve now give "Did you mean?

`PublishFieldSet` now has a `check_skip_request` hook to enable preemptive skips of packaging requests for targets where the publishing will be skipped (such as when a `skip_push=True` field exists).

Fixed inverted logic when setting noninteractive_process_output to only log failures.

### Backends

#### Docker
Expand Down
2 changes: 1 addition & 1 deletion src/python/pants/core/goals/publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ async def run_publish(

if publish.noninteractive_process_output == ShowOutput.ALL or (
publish.noninteractive_process_output == ShowOutput.FAILED
and background_res.exit_code == 0
and background_res.exit_code != 0
):
console.print_stdout(output_msg)

Expand Down
Loading