lua-users home
lua-l archive

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


On 1 September 2014 12:38, Simon Cozens <simon@simon-cozens.org> wrote:
> You will then need to run:
>
> * `luarocks install stdlib lgi lpeg luaexpat inspect luaepnf luarepl
> cassowary`

Side note on LuaRocks syntax: the above doesn't work as is because the
argument next to the first rock name is interpreted as being its
version number. In a Unix shell, one would have to do:

`for i in stdlib lgi lpeg luaexpat inspect luaepnf luarepl cassowary;
do luarocks install $i; done`

(In other words, one call per rock.)

-- Hisham