Add check to adjust_package_path

This commit is contained in:
buffet 2021-09-14 12:15:54 +00:00
parent 9ae4b095d1
commit fb86e3df22

View file

@ -263,7 +263,13 @@ luaK_create(struct kiwmi_server *server)
"package.path = KIWMI_CONFIGDIR .. '/?.lua;' .. package.path\n" "package.path = KIWMI_CONFIGDIR .. '/?.lua;' .. package.path\n"
"package.path = KIWMI_CONFIGDIR .. '/?/init.lua;' .. package.path\n"; "package.path = KIWMI_CONFIGDIR .. '/?/init.lua;' .. package.path\n";
luaL_dostring(L, adjust_package_path); if (luaL_dostring(L, adjust_package_path)) {
// shouldn't fail
wlr_log(WLR_ERROR, "Error in adjust_package_path");
lua_close(L);
free(lua);
return NULL;
}
if (!luaK_ipc_init(server, lua)) { if (!luaK_ipc_init(server, lua)) {
wlr_log(WLR_ERROR, "Failed to initialize IPC"); wlr_log(WLR_ERROR, "Failed to initialize IPC");