From 5f9dd5f607129b5f278a052d7b79991e40810940 Mon Sep 17 00:00:00 2001 From: Seednode Date: Sat, 24 Sep 2022 21:00:03 -0500 Subject: [PATCH] Removed debug message from reworking successive argument --- cmd/files.go | 1 - cmd/version.go | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/cmd/files.go b/cmd/files.go index 042e7b5..cf77891 100644 --- a/cmd/files.go +++ b/cmd/files.go @@ -210,7 +210,6 @@ func prepareDirectories(m map[string][]string, successive string) []string { switch { case successive != "": - fmt.Println("Successive") for i := 0; i < len(keys); i++ { directories = append(directories, prepareDirectory(m[keys[i]])...) } diff --git a/cmd/version.go b/cmd/version.go index 363e588..fed0ab1 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -10,7 +10,7 @@ import ( "github.com/spf13/cobra" ) -var Version = "0.12.0" +var Version = "0.12.1" func init() { rootCmd.AddCommand(versionCmd)