logo

go-deblob

remove binary blobs from a directory git clone https://hacktivis.me/git/go-deblob.git
commit: 6f45c1a5519521d7670ec830cfe38527218867f9
parent 60f04634e354d939c2d4c1f8cf60954aa440e50a
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Wed, 26 May 2021 03:31:10 +0200

go-deblob.go: Use fmt.Println when no formatting is used

Diffstat:

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

diff --git a/go-deblob.go b/go-deblob.go @@ -133,9 +133,9 @@ func main() { os.Exit(1) } - fmt.Printf(":: Checking for blobs\n") + fmt.Println(":: Checking for blobs") checkDir(".", false) - fmt.Printf(":: Done checking for blobs\n") + fmt.Println(":: Done checking for blobs") }