Skip to content

Commit

Permalink
*: don't exclude resources, if exclude option is empty.
Browse files Browse the repository at this point in the history
Signed-off-by: Jan-Otto Kröpke <[email protected]>
  • Loading branch information
jkroepke committed Oct 10, 2024
1 parent 1e381f8 commit 83e55e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/types/regexp.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package types
import "regexp"

var (
RegExpAny = regexp.MustCompile(".+")
RegExpEmpty = regexp.MustCompile("")
RegExpAny = regexp.MustCompile("^.+$")
RegExpEmpty = regexp.MustCompile("^$")
)

0 comments on commit 83e55e3

Please sign in to comment.