lualoader: Add note about importance of including the cli module early

This commit is contained in:
Kyle Evans 2018-03-05 00:59:55 +00:00
parent 6d27b68a1a
commit ee15e552d0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=330434

View File

@ -29,6 +29,10 @@
-- $FreeBSD$
--
-- The cli module should be included first here. Some of the functions that it
-- defines are necessary for the Lua-based loader to operate in general.
-- Other modules will also need some of the functions it defines to safely
-- execute loader commands.
require("cli")
local core = require("core")
local config = require("config")