Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use the built in way for Go to check permissions (fix for Windows and cross platform) #3671

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion internal/resolver/resolver.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package resolver
import (
"errors"
"fmt"
fs_real "io/fs"
"path"
"regexp"
"sort"
Expand Down Expand Up @@ -1460,7 +1461,7 @@ func (r resolverQuery) dirInfoUncached(path string) *dirInfo {

// List the directories
entries, err, originalError := r.fs.ReadDirectory(path)
if err == syscall.EACCES || err == syscall.EPERM {
if errors.Is(err, fs_real.ErrPermission) {
// Just pretend this directory is empty if we can't access it. This is the
// case on Unix for directories that only have the execute permission bit
// set. It means we will just pass through the empty directory and
Expand Down