diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2024-02-19 11:36:10 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2024-02-19 14:49:40 -0300 |
commit | 50ebdd5d17c8390d30132c165d2e0a614dc0ecae (patch) | |
tree | 989b6845077a50283390e2da1e25ad235689a3ff | |
parent | e6f1a169135aefbd592f50add8abb73e79061b3a (diff) | |
download | luarocks-50ebdd5d17c8390d30132c165d2e0a614dc0ecae.tar.gz luarocks-50ebdd5d17c8390d30132c165d2e0a614dc0ecae.tar.bz2 luarocks-50ebdd5d17c8390d30132c165d2e0a614dc0ecae.zip |
improve dependency match message
-rw-r--r-- | src/luarocks/deps.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/deps.lua b/src/luarocks/deps.lua index f4c04c35..8af28327 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" |
163 | end | 163 | end |
164 | 164 | ||
165 | --- Check depenendencies of a package and report any missing ones. | 165 | --- Check depenendencies of a package and report any missing ones. |