Date: Sat, 17 Feb 2018 04:46:06 +0000 (UTC) From: Kyle Evans <kevans@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r329431 - head/stand/lua Message-ID: <201802170446.w1H4k6e4063269@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802170446.w1H4k6e4063269>