elvish/pkg/fsutil/search_unix.go
Qi Xiao f7cb556d9b Require Go 1.18.
- Run "go fix" to remove legacy build tags

- Use staticcheck@master until it has a release that supports Go 1.18

- Turn off autocrlf for Windows tasks
2022-03-20 15:28:23 +00:00

10 lines
153 B
Go

//go:build !windows && !plan9
package fsutil
import "os"
func isExecutable(stat os.FileInfo) bool {
return !stat.IsDir() && stat.Mode()&0o111 != 0
}