aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/luarocks/cmd/search.lua13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/luarocks/cmd/search.lua b/src/luarocks/cmd/search.lua
index 50471c6e..d12f5314 100644
--- a/src/luarocks/cmd/search.lua
+++ b/src/luarocks/cmd/search.lua
@@ -10,12 +10,13 @@ local search = require("luarocks.search")
10cmd_search.help_summary = "Query the LuaRocks servers." 10cmd_search.help_summary = "Query the LuaRocks servers."
11cmd_search.help_arguments = "[--source] [--binary] { <name> [<version>] | --all }" 11cmd_search.help_arguments = "[--source] [--binary] { <name> [<version>] | --all }"
12cmd_search.help = [[ 12cmd_search.help = [[
13--source Return only rockspecs and source rocks, 13--source Return only rockspecs and source rocks,
14 to be used with the "build" command. 14 to be used with the "build" command.
15--binary Return only pure Lua and binary rocks (rocks that can be used 15--binary Return only pure Lua and binary rocks (rocks that can be used
16 with the "install" command without requiring a C toolchain). 16 with the "install" command without requiring a C toolchain).
17--all List all contents of the server that are suitable to 17--all List all contents of the server that are suitable to
18 this platform, do not filter by name. 18 this platform, do not filter by name.
19--porcelain Return a machine readable format.
19]] 20]]
20 21
21--- Splits a list of search results into two lists, one for "source" results 22--- Splits a list of search results into two lists, one for "source" results