1
0
mirror of https://github.com/go-task/task.git synced 2024-12-12 10:45:49 +02:00

Issue #826. Replaced zglob.Glob func with GlobFollowSymlinks to evaluate symlinks

This commit is contained in:
ilewin 2022-08-23 18:25:11 +02:00
parent c4e10ef0aa
commit 2a67499f12

View File

@ -32,7 +32,7 @@ func Glob(dir string, g string) ([]string, error) {
return nil, err
}
fs, err := zglob.Glob(g)
fs, err := zglob.GlobFollowSymlinks(g)
if err != nil {
return nil, err
}