2016-08-09 17:07:21 +00:00
|
|
|
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-09 17:07:21 +00:00
|
|
|
*/
|
2016-08-27 01:17:20 +00:00
|
|
|
func isExecutable(path string) error {
|
|
|
|
return isExecutableOnPlatform(path)
|
2016-08-09 17:07:21 +00:00
|
|
|
}
|