summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xmake/core/base/os.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/base/os.lua b/xmake/core/base/os.lua
index 12bc30c1d..0b8e2e6ab 100644
--- a/xmake/core/base/os.lua
+++ b/xmake/core/base/os.lua
@@ -1187,7 +1187,7 @@ function os.isexec(filepath)
end
end
elseif os.isfile(filepath) then
- return os._access(filepath, "x")
+ return os._access and os._access(filepath, "x") or true
end
return false
end