flatcar / flatcar-build-scripts

A set of helper scripts for building Flatcar Linux. It includes scripts that should be independent of the existing `scripts` repository.
Apache License 2.0
2 stars 5 forks source link

size-change-report: Silence the sort #136

Closed krnowak closed 1 year ago

krnowak commented 1 year ago

The sort | head pipeline results in sort complaining about a broken stdout pipe. This kinda makes sense, because sort wants to write all the sorted results, while head just reads first 10 lines and closes its input end of the pipe. For some reason I can't reproduce it locally, but it's annoying to see those messages in the image differences job. Since we already ignore errors from sort, send its complaints to /dev/null too.