1
0
mirror of https://github.com/kepler155c/opus synced 2025-02-03 19:09:08 +00:00

installer branches

This commit is contained in:
kepler155c@gmail.com 2018-01-24 18:48:13 -05:00
parent f5add40808
commit 8879f91c62

View File

@ -129,8 +129,8 @@ local function requireWrapper(env)
-- place package and require function into env -- place package and require function into env
env.package = { env.package = {
path = env.LUA_PATH or os.getenv('LUA_PATH') or DEFAULT_PATH, path = env.LUA_PATH or (os.getenv and os.getenv('LUA_PATH')) or DEFAULT_PATH,
upath = env.LUA_UPATH or os.getenv('LUA_UPATH') or DEFAULT_UPATH, upath = env.LUA_UPATH or (os.getenv and os.getenv('LUA_UPATH')) or DEFAULT_UPATH,
config = '/\n:\n?\n!\n-', config = '/\n:\n?\n!\n-',
loaded = { loaded = {
math = math, math = math,