aboutsummaryrefslogtreecommitdiff
path: root/src/luarocks/deps.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/luarocks/deps.lua')
-rw-r--r--src/luarocks/deps.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/luarocks/deps.lua b/src/luarocks/deps.lua
index 812e6d18..ac294f54 100644
--- a/src/luarocks/deps.lua
+++ b/src/luarocks/deps.lua
@@ -488,6 +488,7 @@ function deps.fulfill_dependencies(rockspec, deps_mode)
488 if not url then 488 if not url then
489 return nil, "Could not satisfy dependency "..deps.show_dep(dep)..": "..err 489 return nil, "Could not satisfy dependency "..deps.show_dep(dep)..": "..err
490 end 490 end
491 util.printout("Installing "..url)
491 local ok, err, errcode = install.run(url, deps.deps_mode_to_flag(deps_mode)) 492 local ok, err, errcode = install.run(url, deps.deps_mode_to_flag(deps_mode))
492 if not ok then 493 if not ok then
493 return nil, "Failed installing dependency: "..url.." - "..err, errcode 494 return nil, "Failed installing dependency: "..url.." - "..err, errcode