Rename isExecutable() to isExecutableSync()

This commit is contained in:
Kevin Sawicki
2013-06-12 18:22:43 -07:00
parent 400aa93bf3
commit a192842dc0
2 changed files with 3 additions and 3 deletions

View File

@@ -58,7 +58,7 @@ module.exports =
false
# Returns true if the specified path is exectuable.
isExecutable: (path) ->
isExecutableSync: (path) ->
try
(fs.statSync(path).mode & 0o777 & 1) isnt 0
catch e