Skip to content

Commit

Permalink
fix docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
derailed committed Feb 2, 2024
1 parent f816a8e commit ad276dd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY internal internal
COPY cmd cmd
COPY types types
COPY pkg pkg
RUN apk --no-cache add make git gcc libc-dev curl ca-certificates && make build
RUN apk --no-cache add make git gcc libc-dev curl ca-certificates binutils-gold && make build

# -----------------------------------------------------------------------------
# Image...
Expand Down
3 changes: 0 additions & 3 deletions internal/report/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,6 @@ func (b *Builder) PrintHeader(s *Sanitizer) {
// PrintReport prints out sanitizer report to screen
func (b *Builder) PrintReport(level config.Level, s *Sanitizer) {
for _, section := range b.Report.Sections {
if section.Tally.counts[level] == 0 {
continue
}
var any bool
s.Open(Titleize(section.Title, len(section.Outcome)), section.Tally)
{
Expand Down

0 comments on commit ad276dd

Please sign in to comment.