forked from github/server
5 lines
187 B
Lua
5 lines
187 B
Lua
if config.paths ~= nil then
|
|
for path in string.gmatch(config.paths, "([^:]+)") do
|
|
package.path = package.path .. ';' .. path .. '/?.lua;' .. path .. '/?/init.lua'
|
|
end
|
|
end
|