diff options
| author | ruki <[email protected]> | 2026-02-11 23:09:44 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2026-02-11 23:09:44 +0800 |
| commit | d0f0d7cab072eb292bb43e11d49d039e7a50024e (patch) | |
| tree | 1bb860d8e1666322207a95929f5d808e522b9bd2 /core/src | |
| parent | b45b292bf8818b6147356b700aab1a8c86069216 (diff) | |
...
Diffstat (limited to 'core/src')
| -rw-r--r-- | core/src/xmake/os/access.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/xmake/os/access.c b/core/src/xmake/os/access.c index 1bfcd072f..d6823d332 100644 --- a/core/src/xmake/os/access.c +++ b/core/src/xmake/os/access.c @@ -53,6 +53,8 @@ tb_int_t xm_os_access(lua_State *lua) { mode_str++; } + tb_trace_i("access: %s, mode: %d -> %d", path, mode, tb_file_access(path, mode)); + // os.access(path, mode) lua_pushboolean(lua, tb_file_access(path, mode)); return 1; |
