blob: b5a9f86d016e78fc97fd418b62a8536f55fc188e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
if _G['VERSION'] then
require 'cli.version'
os.exit(0, true)
end
if _G['CHECK'] then
require 'cli.check'
os.exit(0, true)
end
if _G['DOC'] then
require 'cli.doc' .runCLI()
os.exit(0, true)
end
|