[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: SILE 0.9.0 is released
- From: Hisham <h@...>
- Date: Mon, 1 Sep 2014 17:39:37 -0300
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