You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ ./docs/gendoc.sh
reading configuration from C:/Games/Minetest/mods/3d_armor/3d_armor/docs/config.ld
module(...) name deduction failed: base c:\games\minetest\mods\3d_armor\3d_armor\ c:\games\minetest\mods\3d_armor\shields\init.lua
"items" module: (located at ./armor.lua)
--- Registered armors.---- @module items
"items" submodule: (located at ../shields/init.lua)
--- Registered shields.---- @submodule items
Changing ../shields/init.lua to a normal module works:
--- Registered shields.---- @module shields
Result:
$ ./docs/gendoc.sh
reading configuration from C:/Games/Minetest/mods/3d_armor/3d_armor/docs/config.ld
format: using built-in markdown
output written to c:\games\minetest\mods\3d_armor\3d_armor\docs\reference
How can I make ../shields/init.lua a submodule of items?
The text was updated successfully, but these errors were encountered:
This appears to be related to #59.
config.ld: (located in
./docs/
)gendoc.sh: (script used to execute, located in
./docs/
)Result:
"items" module: (located at
./armor.lua
)"items" submodule: (located at
../shields/init.lua
)Changing
../shields/init.lua
to a normal module works:Result:
How can I make
../shields/init.lua
a submodule ofitems
?The text was updated successfully, but these errors were encountered: