goadb/adb/executable.go

12 lines
291 B
Go
Raw Normal View History

package adb
/*
2016-08-27 01:17:20 +00:00
isExecutable function calls the isExecutableOnPlatform function.
Implementation the isExecutableOnPlatform function is provided in
execuatble_win.go for windows and
executable_unix.go for unix.
*/
2016-08-27 01:17:20 +00:00
func isExecutable(path string) error {
return isExecutableOnPlatform(path)
}