diff options
author | 2020-09-13 10:00:00 -0500 | |
---|---|---|
committer | 2020-09-13 10:00:54 -0500 | |
commit | 9c4d1457dad0e82860d45c76cee04aa8d33a13c4 (patch) | |
tree | e7e692c51f563389dbcd99577e8fd89f5c892f5d /plugins/boot.lua | |
parent | 9b582574922cb7af1a9a31c1182c300b90a20c43 (diff) |
plugins: add emu.plugin table to contain plugin exported interfaces
Diffstat (limited to 'plugins/boot.lua')
-rw-r--r-- | plugins/boot.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/boot.lua b/plugins/boot.lua index 52c56912a0f..09be30ee401 100644 --- a/plugins/boot.lua +++ b/plugins/boot.lua @@ -22,7 +22,7 @@ function lfs.env_replace(str) end _G._ = emu.lang_translate - +_G.emu.plugin = {} -- table to contain plugin interfaces -- substitute environment variables in the plugins path from options local dirs = lfs.env_replace(manager:options().entries.pluginspath:value()) |