github.com/markusbkk/elvish@v0.0.0-20231204143114-91dc52438621/pkg/cli/lscolors/stat_notsolaris.go (about) 1 //go:build !solaris 2 // +build !solaris 3 4 package lscolors 5 6 import "os" 7 8 func isDoor(info os.FileInfo) bool { 9 // Doors are only supported on Solaris. 10 return false 11 }