diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-08-12 01:21:15 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-08-12 01:21:15 +0530 |
| commit | ec909d4211cd124a23f2ea878cc961b8b53f651a (patch) | |
| tree | 1a04e951ec8fb59e488dc35b28728dbad2c1bf9e /src/LuaRuntime.cpp | |
| parent | 4ccfb93b8c193851f6a208e1e0032ebc02bd768c (diff) | |
| download | null-browser-ec909d4211cd124a23f2ea878cc961b8b53f651a.tar.gz null-browser-ec909d4211cd124a23f2ea878cc961b8b53f651a.zip | |
Add null_docs_dir & null_assets_dir config options + use in lua
Diffstat (limited to '')
| -rw-r--r-- | src/LuaRuntime.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LuaRuntime.cpp b/src/LuaRuntime.cpp index 76dfb11..52a1c14 100644 --- a/src/LuaRuntime.cpp +++ b/src/LuaRuntime.cpp @@ -70,7 +70,7 @@ void LuaRuntime::require_module(const QString &module_name) { } void LuaRuntime::init_builtins_package_path() { - auto builtins_lua_path = QString(PROJECT_LUA_PATH); + auto builtins_lua_path = QString(PROJECT_LUA_PATH "/?.lua"); append_package_path(builtins_lua_path); } |
