Skip to content

Commit

Permalink
fix: added a condition for .kbcignore file
Browse files Browse the repository at this point in the history
  • Loading branch information
hosekpeter committed Nov 20, 2024
1 parent 83300d9 commit ca669a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/pkg/utils/testhelper/files.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func IsIgnoredFile(path string, d filesystem.FileInfo) bool {
return !d.IsDir() &&
strings.HasPrefix(base, ".") &&
!strings.HasPrefix(base, ".env") &&
base != ".gitignore"
base != ".gitignore" && base != ".kbcignore"
}

func IsIgnoredDir(path string, d filesystem.FileInfo) bool {
Expand Down

0 comments on commit ca669a9

Please sign in to comment.