Skip to content

Commit

Permalink
interval
Browse files Browse the repository at this point in the history
  • Loading branch information
juliojimenez committed Jun 2, 2021
1 parent 8608653 commit be50380
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

var (
version = "0.0.11"
version = "0.0.12"
verbose bool
trace bool
debug bool
Expand Down
2 changes: 1 addition & 1 deletion lib/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit be50380

Please sign in to comment.