# HG changeset patch # User Kim Alvefur # Date 1573237557 -3600 # Node ID 0971694b30a82aeccb67c9ba690645fa0f7dc230 # Parent 1ef1f6c43c5bcf839226b91b1dcb68553790c4a9 util.paths: Don't treat path as pattern, fix traceback (thanks Menel87) diff -r 1ef1f6c43c5b -r 0971694b30a8 util/paths.lua --- a/util/paths.lua Fri Nov 08 00:58:03 2019 +0100 +++ b/util/paths.lua Fri Nov 08 19:25:57 2019 +0100 @@ -48,11 +48,11 @@ local lua_path_sep = package.config:sub(3,3); local dir_sep = package.config:sub(1,1); local sub_path = dir_sep.."lua"..dir_sep..lua_version..dir_sep; - if not string.match(package.path, installer_plugin_path) then + if not string.find(package.path, installer_plugin_path, 1, true) then package.path = package.path..lua_path_sep..installer_plugin_path..dir_sep.."share"..sub_path.."?.lua"; package.path = package.path..lua_path_sep..installer_plugin_path..dir_sep.."share"..sub_path.."?"..dir_sep.."init.lua"; end - if not string.match(package.path, installer_plugin_path) then + if not string.find(package.path, installer_plugin_path, 1, true) then package.cpath = package.cpath..lua_path_sep..installer_plugin_path..dir_sep.."lib"..sub_path.."?.so"; end end