logo

go-deblob

remove binary blobs from a directory
commit: 521c874686a8384453fb0b4d761a50647587a68b
parent: 07da04865f8e91ca962be74ba72fc83bd92519ec
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Thu, 12 Dec 2019 01:57:03 +0100

Fix missing newlines on removal/noop notice

Diffstat:

Mgo-deblob.go4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/go-deblob.go b/go-deblob.go @@ -72,14 +72,14 @@ func checkDir(dirname string) { for _, file := range files { filename := path.Join(dirname, file.Name()) if is_excluded(filename) { - fmt.Printf("! %s", filename) + fmt.Printf("! %s\n", filename) continue } if file.IsDir() { checkDir(filename) } else if isBlob(filename) { - fmt.Printf("- %s", filename) + fmt.Printf("- %s\n", filename) if noop { continue }