From 1e0e09ef3dca8a14c3230e18e8bf9e3bab073df0 Mon Sep 17 00:00:00 2001 From: Dustin Essington Date: Sun, 28 May 2023 11:08:37 -0500 Subject: [PATCH] equalfold file extension and ignore extension in ingore check --- check/checkrr.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check/checkrr.go b/check/checkrr.go index e7b1bfd..6a1ca60 100644 --- a/check/checkrr.go +++ b/check/checkrr.go @@ -97,7 +97,7 @@ func (c *Checkrr) Run() { ext := filepath.Ext(path) for _, v := range c.ignoreExts { - if v == ext { + if strings.EqualFold(v, ext) { ignore = true } }