svn commit: r329431 - head/stand/lua

Kyle Evans kevans at FreeBSD.org
Sat Feb 17 04:46:07 UTC 2018


Author: kevans
Date: Sat Feb 17 04:46:06 2018
New Revision: 329431
URL: https://svnweb.freebsd.org/changeset/base/329431

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

Modified:
  head/stand/lua/config.lua

Modified: head/stand/lua/config.lua
==============================================================================
--- head/stand/lua/config.lua	Sat Feb 17 04:43:41 2018	(r329430)
+++ head/stand/lua/config.lua	Sat Feb 17 04:46:06 2018	(r329431)
@@ -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


More information about the svn-src-head mailing list