diff --git a/cmd/root.go b/cmd/root.go index 9f1000f..cf80c33 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -11,7 +11,7 @@ import ( ) var ( - version = "0.0.11" + version = "0.0.12" verbose bool trace bool debug bool diff --git a/lib/generate.go b/lib/generate.go index f61889a..ec46a7b 100644 --- a/lib/generate.go +++ b/lib/generate.go @@ -74,7 +74,7 @@ func directoryParser(fs afero.Fs, regex string, repoPath string) []string { cleanFile := strings.Replace(file, repoPath, "", 1) cleanDiscovery = append(cleanDiscovery, cleanFile) } else if strings.HasPrefix(file, ".github") { - cleanDiscovery = append(cleanDiscovery, "/" + file) + cleanDiscovery = append(cleanDiscovery, "/"+file) } else { cleanDiscovery = append(cleanDiscovery, file) }