goadb/adb/executable_unix.go

10 lines
180 B
Go
Raw Normal View History

// +build darwin freebsd linux netbsd openbsd
package adb
import "golang.org/x/sys/unix"
2016-08-27 01:17:20 +00:00
func isExecutableOnPlatform(path string) error {
return unix.Access(path, unix.X_OK)
}