diff options
Diffstat (limited to 'xmake/core/tasks/lua.lua')
| -rwxr-xr-x | xmake/core/tasks/lua.lua | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/xmake/core/tasks/lua.lua b/xmake/core/tasks/lua.lua index be5bea0d0..8258e5033 100755 --- a/xmake/core/tasks/lua.lua +++ b/xmake/core/tasks/lua.lua @@ -1,17 +1,20 @@ -- define task task("lua") + -- set category + set_task_category("action") + -- set menu set_task_menu({ - -- xmake l - shortname = 'l' - -- usage - , usage = "xmake lua|l [options] [script] [arguments]" + usage = "xmake lua|l [options] [script] [arguments]" -- description , description = "Run the lua script." + -- xmake l + , shortname = 'l' + -- options , options = { |
