aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/luarocks/cmd/list.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/luarocks/cmd/list.lua b/src/luarocks/cmd/list.lua
index 102a08f0..5e5cfac8 100644
--- a/src/luarocks/cmd/list.lua
+++ b/src/luarocks/cmd/list.lua
@@ -71,8 +71,10 @@ end
71function list.command(flags, filter, version) 71function list.command(flags, filter, version)
72 local query = queries.new(filter and filter:lower() or "", version, true) 72 local query = queries.new(filter and filter:lower() or "", version, true)
73 local trees = cfg.rocks_trees 73 local trees = cfg.rocks_trees
74 local title = "Rocks installed for Lua "..cfg.lua_version
74 if flags["tree"] then 75 if flags["tree"] then
75 trees = { flags["tree"] } 76 trees = { flags["tree"] }
77 title = title .. " in " .. flags["tree"]
76 end 78 end
77 79
78 if flags["outdated"] then 80 if flags["outdated"] then
@@ -86,7 +88,7 @@ function list.command(flags, filter, version)
86 util.warning(err) 88 util.warning(err)
87 end 89 end
88 end 90 end
89 util.title("Installed rocks for Lua "..cfg.lua_version..":", flags["porcelain"]) 91 util.title(title, flags["porcelain"])
90 search.print_result_tree(results, flags["porcelain"]) 92 search.print_result_tree(results, flags["porcelain"])
91 return true 93 return true
92end 94end