aboutsummaryrefslogtreecommitdiff
path: root/stand/lua
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2018-08-30 13:29:32 +0000
committerKyle Evans <kevans@FreeBSD.org>2018-08-30 13:29:32 +0000
commitca703fe987439c78ab2bcc9d890281f6b2112c03 (patch)
treea6966399e2330ba14afe8d3593076c732cba84eb /stand/lua
parent0fb707ecc9b14d8af8d189ced26a84be5a488687 (diff)
Notes
Diffstat (limited to 'stand/lua')
-rw-r--r--stand/lua/loader.lua7
1 files changed, 3 insertions, 4 deletions
diff --git a/stand/lua/loader.lua b/stand/lua/loader.lua
index 95cff013e652..c875f63a1b4a 100644
--- a/stand/lua/loader.lua
+++ b/stand/lua/loader.lua
@@ -42,15 +42,14 @@ local password = require("password")
-- need it.
local menu
+try_include("local")
+
+config.load()
-- Our console may have been setup for a different color scheme before we get
-- here, so make sure we set the default.
if color.isEnabled() then
printc(color.default())
end
-
-try_include("local")
-
-config.load()
if not core.isMenuSkipped() then
menu = require("menu")
end