luarocks / luarocks-site

LuaRocks website and module host
http://luarocks.org
175 stars 38 forks source link

Front Page Quick Start: Unix code sample shows 3.2.0, but should show 3.2.1. #149

Closed behoffski closed 4 years ago

behoffski commented 4 years ago

An extract from the page https://luarocks.org/ follows. It references version 3.2.0, when the code is now at 3.2.1. This number is used in the wget/tar/cr commands. (A sub-page, more focussed on Unix installations, correctly uses 3.2.1).

I would fix this under GitHub myself, but am not familiar with this framework (MoonScript etc), and so could not find the (static?) page.


[...]

Quick Start

Installing LuaRocks in a Unix system:

$ wget https://luarocks.org/releases/luarocks-3.2.0.tar.gz $ tar zxpf luarocks-3.2.0.tar.gz $ cd luarocks-3.2.0 $ ./configure; sudo make bootstrap $ sudo luarocks install luasocket $ lua Lua 5.3.5 Copyright (C) 1994-2018 Lua.org, PUC-Rio

require "socket" [...]