mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-07 09:25:43 +00:00
11 lines
274 B
Go
11 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")
|
|
}
|