diff options
Diffstat (limited to 'src/luarocks/deps.lua')
-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 b8a36850..6cf5bf9d 100644 --- a/src/luarocks/deps.lua +++ b/src/luarocks/deps.lua | |||
@@ -492,7 +492,7 @@ function deps.fulfill_dependencies(rockspec, deps_mode) | |||
492 | return nil, "Could not satisfy dependency "..deps.show_dep(dep)..": "..search_err | 492 | return nil, "Could not satisfy dependency "..deps.show_dep(dep)..": "..search_err |
493 | end | 493 | end |
494 | util.printout("Installing "..url) | 494 | util.printout("Installing "..url) |
495 | local ok, install_err, errcode = install.run(url, deps.deps_mode_to_flag(deps_mode)) | 495 | local ok, install_err, errcode = install.command({deps_mode = deps_mode}, url) |
496 | if not ok then | 496 | if not ok then |
497 | return nil, "Failed installing dependency: "..url.." - "..install_err, errcode | 497 | return nil, "Failed installing dependency: "..url.." - "..install_err, errcode |
498 | end | 498 | end |