From b911fff7a7d3b7bb6596094088722c35743447a5 Mon Sep 17 00:00:00 2001 From: bilou4 <4quatre4quatre@gmail.com> Date: Fri, 5 Apr 2024 18:33:16 +0200 Subject: [PATCH] [fix] add \n at the end of message --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index 18b18a6..476f555 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -72,7 +72,7 @@ func getFilesToCompute(args []string) ([]string, error) { } } } - fmt.Printf("Computing hash for: %d files.", len(args)) + fmt.Printf("Computing hash for: %d files.\n", len(args)) return args, nil }