lua-users home
lua-l archive

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


On 26 August 2013 14:35, Dirk Laurie <dirk.laurie@gmail.com> wrote:
>>
>> As usual, see the GitHub logs for detailed history. And as always, all
>> kind of feedback is much appreciated.
>>
>
> When I install a rock, it gives messages telling me in what /tmp directory
> it is doing the build, you can see what directories are being created and
> what files are being put in there, and it says
>
> ...is now built and installed in /usr/local/
>
> but it never actually shows the fully qualified names of the finally
> installed files.

This is because the build happens in the sandbox (and it may call
tools like make over which we have no control in terms of output) and
then files deployed to their final destinations in a later step.
`luarocks show <rock_name>` lists the installed modules.

-- Hisham