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.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/luarocks/deps.lua b/src/luarocks/deps.lua
index 27062cbb..88a1bb0a 100644
--- a/src/luarocks/deps.lua
+++ b/src/luarocks/deps.lua
@@ -630,7 +630,7 @@ function scan_deps(results, missing, manifest, name, version)
630 if not deplist then 630 if not deplist then
631 rockspec, err = fetch.load_local_rockspec(path.rockspec_file(name, version)) 631 rockspec, err = fetch.load_local_rockspec(path.rockspec_file(name, version))
632 if err then 632 if err then
633 missing[name.." "..version] = true 633 missing[name.." "..version] = err
634 return results, missing 634 return results, missing
635 end 635 end
636 dependencies_name[version] = rockspec.dependencies 636 dependencies_name[version] = rockspec.dependencies
@@ -643,7 +643,7 @@ function scan_deps(results, missing, manifest, name, version)
643 end 643 end
644 if next(failures) then 644 if next(failures) then
645 for _, failure in pairs(failures) do 645 for _, failure in pairs(failures) do
646 missing[show_dep(failure)] = true 646 missing[show_dep(failure)] = "failed"
647 end 647 end
648 end 648 end
649 results[name] = version 649 results[name] = version