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 <mail@jkroepke.de>
  • Loading branch information
jkroepke committed Oct 10, 2024
1 parent 72df515 commit e56cf5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/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 e56cf5e

Please sign in to comment.