| 186 | } |
| 187 | |
| 188 | void cliPushFileError(lua_State* L, const std::string& message) { |
| 189 | lua_pushnil(L); |
| 190 | lua_pushlstring(L, message.c_str(), message.size()); |
| 191 | } |
| 192 | |
| 193 | int cliLuaCwd(lua_State* L) { |
| 194 | auto path = fs::current_path().string(); |
no test coverage detected