You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In several places we use the filepath.Glob function that can return an error if the glob expression is invalid. We do not always properly handle this error.
There are two options of how to approach this:
Catch the error where the filepath.Glob function is used and return it to the caller scope.
Validate glob expressions somewhere closer to the top of the call stack.