mirror of
https://github.com/Hilbis/Hilbish
synced 2025-04-02 03:33:22 +00:00
* fix: check if no command passed to exec * docs: add exec fixes * chore: remove extra space
9 lines
143 B
Lua
9 lines
143 B
Lua
local commander = require 'commander'
|
|
|
|
commander.register('exec', function(args)
|
|
if #args == 0 then
|
|
return
|
|
end
|
|
hilbish.exec(args[1])
|
|
end)
|