diff options
-rw-r--r-- | src/luarocks/manif.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/luarocks/manif.lua b/src/luarocks/manif.lua index b9a65b09..951d6e56 100644 --- a/src/luarocks/manif.lua +++ b/src/luarocks/manif.lua | |||
@@ -1,4 +1,3 @@ | |||
1 | |||
2 | --- Module for handling manifest files and tables. | 1 | --- Module for handling manifest files and tables. |
3 | -- Manifest files describe the contents of a LuaRocks tree or server. | 2 | -- Manifest files describe the contents of a LuaRocks tree or server. |
4 | -- They are loaded into manifest tables, which are then used for | 3 | -- They are loaded into manifest tables, which are then used for |
@@ -253,7 +252,7 @@ local function update_dependencies(manifest, deps_mode) | |||
253 | for miss, err in pairs(missing) do | 252 | for miss, err in pairs(missing) do |
254 | if miss == current then | 253 | if miss == current then |
255 | util.printerr("Tree inconsistency detected: "..current.." has no rockspec. "..err) | 254 | util.printerr("Tree inconsistency detected: "..current.." has no rockspec. "..err) |
256 | else | 255 | elseif deps_mode ~= "none" then |
257 | util.printerr("Missing dependency for "..pkg.." "..version..": "..miss) | 256 | util.printerr("Missing dependency for "..pkg.." "..version..": "..miss) |
258 | end | 257 | end |
259 | end | 258 | end |