Rename GLob to glob

This commit is contained in:
2025-12-02 16:36:11 +01:00
parent 3bcc958dda
commit eacc92ce4b
3 changed files with 4 additions and 4 deletions

View File

@@ -7,8 +7,8 @@ import (
"strings"
logger "git.site.quack-lab.dev/dave/cylogger"
"github.com/bmatcuk/doublestar/v4"
"github.com/BurntSushi/toml"
"github.com/bmatcuk/doublestar/v4"
"gopkg.in/yaml.v3"
)
@@ -208,7 +208,7 @@ func AggregateGlobs(commands []ModifyCommand) map[string]struct{} {
return globs
}
func ExpandGLobs(patterns map[string]struct{}) ([]string, error) {
func ExpandGlobs(patterns map[string]struct{}) ([]string, error) {
expandGlobsLogger := modifyCommandLogger.WithPrefix("ExpandGLobs")
expandGlobsLogger.Debug("Expanding glob patterns to actual files")
expandGlobsLogger.Trace("Input patterns for expansion: %v", patterns)