aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/spf13/afero/match.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/spf13/afero/match.go')
-rw-r--r--vendor/github.com/spf13/afero/match.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/spf13/afero/match.go b/vendor/github.com/spf13/afero/match.go
index 08b3b7e..c18a87f 100644
--- a/vendor/github.com/spf13/afero/match.go
+++ b/vendor/github.com/spf13/afero/match.go
@@ -33,8 +33,8 @@ import (
// built-ins from that package.
func Glob(fs Fs, pattern string) (matches []string, err error) {
if !hasMeta(pattern) {
- // afero does not support Lstat directly.
- if _, err = lstatIfOs(fs, pattern); err != nil {
+ // Lstat not supported by a ll filesystems.
+ if _, err = lstatIfPossible(fs, pattern); err != nil {
return nil, nil
}
return []string{pattern}, nil