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
Broken symlinks would previously be treated as directories and filtered
out, due to the use of IsNotDir (which defaults to false on Stat
errors), but it makes more sense to only filter out elements that are
certainly directories, so use IsDir (which also defaults to false on
Stat errors) and negate its result.
0 commit comments