Skip to content

Commit

Permalink
adding io to redis
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Zheng committed Jan 6, 2022
1 parent 39d32f5 commit 4e0cecf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "deps/LuaJIT"]
path = deps/LuaJIT
url = [email protected]:zcaudate/LuaJIT.git
[submodule "deps/luasocket"]
path = deps/luasocket
url = https://github.com/diegonehab/luasocket.git
1 change: 1 addition & 0 deletions deps/luasocket
Submodule luasocket added at 5b18e4
1 change: 1 addition & 0 deletions src/scripting.c
Original file line number Diff line number Diff line change
Expand Up @@ -1069,6 +1069,7 @@ void luaLoadLibraries(lua_State *lua) {
#if 1 /* Stuff that we don't load currently, for sandboxing concerns. */
luaLoadLib(lua, LUA_LOADLIBNAME, luaopen_package);
luaLoadLib(lua, LUA_OSLIBNAME, luaopen_os);
luaLoadLib(lua, LUA_IOLIBNAME, luaopen_io);
#endif
}

Expand Down

0 comments on commit 4e0cecf

Please sign in to comment.