2016-08-09 17:07:21 +00:00
|
|
|
// +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 {
|
2016-08-09 17:07:21 +00:00
|
|
|
return unix.Access(path, unix.X_OK)
|
|
|
|
}
|