From 20b87122c97b1c3a7f5bc7e74131cf768c369b9b Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Mon, 19 Feb 2024 11:36:10 -0300 Subject: improve dependency match message --- src/luarocks/deps.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/luarocks/deps.lua b/src/luarocks/deps.lua index e61425f6..1109e786 100644 --- a/src/luarocks/deps.lua +++ b/src/luarocks/deps.lua @@ -159,7 +159,7 @@ local function rock_status(dep, get_versions) local installed, _, _, provided = match_dep(dep, get_versions) local installation_type = provided and "provided by VM" or "installed" - return installed and installed.." "..installation_type or "not installed" + return installed and installed.." "..installation_type..": success" or "not installed" end --- Check depenendencies of a package and report any missing ones. -- cgit v1.2.3-55-g6feb