issue 1
(incompatible with case-sensitive filesystems) reported by jjfoe...@earthlink.net
- main.lua contains code like the following:
dofile("utils/bot_utils.lua")
dofile("utils/misc_utils.lua")
However, the file names in the source tree are actually Utils/Bot_Utils.lua
and Utils/Misc_Utils.lua. Therefore the program fails to run on operating
systems with case-sensitive filesystems, i.e., anything but Windows.
main.lua contains code like the following:
dofile("utils/bot_utils.lua")
dofile("utils/misc_utils.lua")
However, the file names in the source tree are actually Utils/Bot_Utils.lua
and Utils/Misc_Utils.lua. Therefore the program fails to run on operating
systems with case-sensitive filesystems, i.e., anything but Windows.