lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> What are some of the ways I can add a directory to the module path? I want to 
> keep my personal modules in my data directory tree, rather than in something 
> under /usr.

Append your directory to package.path so the loader finds it, as described here:

http://www.lua.org/manual/5.1/manual.html#pdf-package.loaders

Tom