[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Running "luarocks make" every time?
- From: Hugo Musso Gualandi <hgualandi@...>
- Date: Wed, 24 May 2023 23:11:26 -0300
I am working on a Lua project where the main Lua code is under a src/
directory and the binaries are in bin/
bin/
myexe
src/
foo/bar.lua
foo/baz.lua
Currently, I call `luarocks make` every time I change the code. I like
that I lets me run "myexe" instead of "./bin/myexe" and I also like that
it figures out that the stuff inside src/ should be copied to the LUA_PATH.
However, calling luarocks every time is inconvenient while I'm actively
working on the code. Has anyone else experienced a similar problem? What
is your preferred workflow to deal with this?
-- Hugo