automation-tests/cmd/podman/machine/machine_windows.go

12 lines
274 B
Go

package machine
import (
"os"
"strings"
)
func isUnixSocket(file os.DirEntry) bool {
// Assume a socket on Windows, since sock mode is not supported yet https://github.com/golang/go/issues/33357
return !file.Type().IsDir() && strings.HasSuffix(file.Name(), ".sock")
}