Author: kevans
Date: Mon Mar  5 00:59:55 2018
New Revision: 330434
URL: https://svnweb.freebsd.org/changeset/base/330434

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

Modified:
  head/stand/lua/loader.lua

Modified: head/stand/lua/loader.lua
==============================================================================
--- head/stand/lua/loader.lua   Mon Mar  5 00:43:53 2018        (r330433)
+++ head/stand/lua/loader.lua   Mon Mar  5 00:59:55 2018        (r330434)
@@ -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")
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to