aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2024-02-19 11:36:10 -0300
committerHisham Muhammad <hisham@gobolinux.org>2024-02-19 11:36:10 -0300
commit20b87122c97b1c3a7f5bc7e74131cf768c369b9b (patch)
treed6e58acfc9e1f635eef63879caf3edecb108be8d
parent272921b2adf6136448dda9011425f8304c9d508d (diff)
downloadluarocks-improve-dep-message.tar.gz
luarocks-improve-dep-message.tar.bz2
luarocks-improve-dep-message.zip
improve dependency match messageimprove-dep-message
-rw-r--r--src/luarocks/deps.lua2
1 files changed, 1 insertions, 1 deletions
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)
159 159
160 local installed, _, _, provided = match_dep(dep, get_versions) 160 local installed, _, _, provided = match_dep(dep, get_versions)
161 local installation_type = provided and "provided by VM" or "installed" 161 local installation_type = provided and "provided by VM" or "installed"
162 return installed and installed.." "..installation_type or "not installed" 162 return installed and installed.." "..installation_type..": success" or "not installed"
163end 163end
164 164
165--- Check depenendencies of a package and report any missing ones. 165--- Check depenendencies of a package and report any missing ones.