Skip to content

Commit be50380

Browse files
committed
interval
1 parent 8608653 commit be50380

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
var (
14-
version = "0.0.11"
14+
version = "0.0.12"
1515
verbose bool
1616
trace bool
1717
debug bool

lib/generate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ func directoryParser(fs afero.Fs, regex string, repoPath string) []string {
7474
cleanFile := strings.Replace(file, repoPath, "", 1)
7575
cleanDiscovery = append(cleanDiscovery, cleanFile)
7676
} else if strings.HasPrefix(file, ".github") {
77-
cleanDiscovery = append(cleanDiscovery, "/" + file)
77+
cleanDiscovery = append(cleanDiscovery, "/"+file)
7878
} else {
7979
cleanDiscovery = append(cleanDiscovery, file)
8080
}

0 commit comments

Comments
 (0)