Skip to content

Commit

Permalink
Fix last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tdewolff committed Jan 29, 2024
1 parent b082f04 commit 9917ff4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/minify/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -921,9 +921,9 @@ func minify(t Task) bool {

stats := fmt.Sprintf("(%9v, %6v, %6v, %5.1f%%, %6v/s)", dur, humanize.Bytes(uint64(rLen)), humanize.Bytes(uint64(wLen)), ratio*100, speed)
if srcName != dstName {
fmt.Println("%v - %v to %v", stats, srcName, dstName)
fmt.Printf("%v - %v to %v\n", stats, srcName, dstName)
} else {
fmt.Println("%v - %v", stats, srcName)
fmt.Printf("%v - %v\n", stats, srcName)
}
}

Expand Down

0 comments on commit 9917ff4

Please sign in to comment.