10 lines
143 B
Lua
10 lines
143 B
Lua
|
if _G['VERSION'] then
|
||
|
require 'cli.version'
|
||
|
os.exit(0, true)
|
||
|
end
|
||
|
|
||
|
if _G['CHECK'] then
|
||
|
require 'cli.check'
|
||
|
os.exit(0, true)
|
||
|
end
|