diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2012-11-02 06:54:45 -0200 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2012-11-02 06:54:45 -0200 |
commit | a94d8e04dfde6b35bb1ac6bdc1d4081b1d48cbf3 (patch) | |
tree | 6e86d188eaeba8843ca7d7a13ad12868384fe5e5 | |
parent | c7b9fe0fc863ff09716ff592f3ae96fa3b0e0ca1 (diff) | |
download | luarocks-a94d8e04dfde6b35bb1ac6bdc1d4081b1d48cbf3.tar.gz luarocks-a94d8e04dfde6b35bb1ac6bdc1d4081b1d48cbf3.tar.bz2 luarocks-a94d8e04dfde6b35bb1ac6bdc1d4081b1d48cbf3.zip |
Add documentation
-rw-r--r-- | src/luarocks/list.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/luarocks/list.lua b/src/luarocks/list.lua index f56fc7e9..9a4630ff 100644 --- a/src/luarocks/list.lua +++ b/src/luarocks/list.lua | |||
@@ -9,9 +9,11 @@ local util = require("luarocks.util") | |||
9 | local path = require("luarocks.path") | 9 | local path = require("luarocks.path") |
10 | 10 | ||
11 | help_summary = "Lists currently installed rocks." | 11 | help_summary = "Lists currently installed rocks." |
12 | 12 | help_arguments = "[--porcelain] <filter>" | |
13 | help = [[ | 13 | help = [[ |
14 | <argument> is a substring of a rock name to filter by. | 14 | <filter> is a substring of a rock name to filter by. |
15 | |||
16 | --porcelain Produce machine-friendly output. | ||
15 | ]] | 17 | ]] |
16 | 18 | ||
17 | --- Driver function for "list" command. | 19 | --- Driver function for "list" command. |