stand/lua: Correct test sense, this should have been 'not nil'

This commit is contained in:
Kyle Evans 2018-02-17 04:46:06 +00:00
parent 7104917375
commit 4d290ffb2d

View File

@ -305,7 +305,7 @@ function config.loadkernel()
-- succeeded add path to module_path
if res ~= nil then
if module_path == nil then
if module_path ~= nil then
loader.setenv("module_path", v..";"..
module_path);
end