mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-13 18:07:51 +08:00
0adf0ec147
The unix build tag is supported by Go 1.19.
10 lines
139 B
Go
10 lines
139 B
Go
//go:build unix
|
|
|
|
package fsutil
|
|
|
|
import "os"
|
|
|
|
func isExecutable(stat os.FileInfo) bool {
|
|
return !stat.IsDir() && stat.Mode()&0o111 != 0
|
|
}
|