diff options
| author | ruki <[email protected]> | 2024-02-20 22:43:45 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-02-20 22:43:45 +0800 |
| commit | 1d15ef8845800b26942fc9236fb3bef62e2e1744 (patch) | |
| tree | de3e726a6c0f6ee77e32ce2c7d41b2ba333274a8 /xmake/plugins/lua/main.lua | |
| parent | 3c19344a448b3b8f766f858269472f728a67d0d0 (diff) | |
fix lua workingdir
Diffstat (limited to 'xmake/plugins/lua/main.lua')
| -rw-r--r-- | xmake/plugins/lua/main.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xmake/plugins/lua/main.lua b/xmake/plugins/lua/main.lua index c0cd92f52..5166d2825 100644 --- a/xmake/plugins/lua/main.lua +++ b/xmake/plugins/lua/main.lua @@ -160,6 +160,9 @@ end function main() + -- restore to the current working directory + os.cd(os.workingdir()) + -- list builtin scripts if option.get("list") then return _list() |
