aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2015-06-29 21:31:11 -0300
committerHisham Muhammad <hisham@gobolinux.org>2015-06-29 21:31:11 -0300
commit5861782615800511551adafce78844c93734abb9 (patch)
tree02ec1d712945b38515c373aa8a9dda21dbccd6c7 /src
parent1eccb0385c6bef170ceee86a6415d7442c28699d (diff)
parent7e464b149c3ec47161249bd316e446f5261516ab (diff)
downloadluarocks-5861782615800511551adafce78844c93734abb9.tar.gz
luarocks-5861782615800511551adafce78844c93734abb9.tar.bz2
luarocks-5861782615800511551adafce78844c93734abb9.zip
Merge pull request #400 from ignacio/400-config-help
'config' command does not have a help message
Diffstat (limited to 'src')
-rw-r--r--src/luarocks/config_cmd.lua17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/luarocks/config_cmd.lua b/src/luarocks/config_cmd.lua
index c066cfec..bf282a7a 100644
--- a/src/luarocks/config_cmd.lua
+++ b/src/luarocks/config_cmd.lua
@@ -6,6 +6,22 @@ local cfg = require("luarocks.cfg")
6local util = require("luarocks.util") 6local util = require("luarocks.util")
7local dir = require("luarocks.dir") 7local dir = require("luarocks.dir")
8 8
9config_cmd.help_summary = "Query information about the LuaRocks configuration."
10config_cmd.help_arguments = "<flag>"
11config_cmd.help = [[
12--lua-incdir Path to Lua header files.
13
14--lua-libdir Path to Lua library files.
15
16--lua-ver Lua version (in major.minor format). e.g. 5.1
17
18--system-config Location of the system config file.
19
20--user-config Location of the user config file.
21
22--rock-trees Rocks trees in use. First the user tree, then the system tree.
23]]
24
9local function config_file(conf) 25local function config_file(conf)
10 print(dir.normalize(conf.file)) 26 print(dir.normalize(conf.file))
11 if conf.ok then 27 if conf.ok then
@@ -39,7 +55,6 @@ function config_cmd.run(...)
39 if flags["user-config"] then 55 if flags["user-config"] then
40 return config_file(conf.user) 56 return config_file(conf.user)
41 end 57 end
42
43 if flags["rock-trees"] then 58 if flags["rock-trees"] then
44 for _, tree in ipairs(cfg.rocks_trees) do 59 for _, tree in ipairs(cfg.rocks_trees) do
45 if type(tree) == "string" then 60 if type(tree) == "string" then