From 88e16001e37eab28f5d6f4c242f65b8a4c2a1e33 Mon Sep 17 00:00:00 2001 From: mpeterv Date: Sat, 19 Mar 2016 14:31:33 +0300 Subject: Fix stat error on `luarocks download --all` --- src/luarocks/download.lua | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) (limited to 'src') diff --git a/src/luarocks/download.lua b/src/luarocks/download.lua index d241fca8..f08ba7fe 100644 --- a/src/luarocks/download.lua +++ b/src/luarocks/download.lua @@ -43,15 +43,17 @@ function download.download(arch, name, version, all) if all then if name == "" then query.exact_name = false end local results = search.search_repos(query) - - if next(results) then - local all_ok = true - local any_err = "" - for name, result in pairs(results) do - for version, items in pairs(result) do - for _, item in ipairs(items) do - local url = path.make_url(item.repo, name, version, item.arch) - local ok, err = get_file(url) + local has_result = false + local all_ok = true + local any_err = "" + for name, result in pairs(results) do + for version, items in pairs(result) do + for _, item in ipairs(items) do + -- Ignore provided rocks. + if item.arch ~= "installed" then + has_result = true + local filename = path.make_url(item.repo, name, version, item.arch) + local ok, err = get_file(filename) if not ok then all_ok = false any_err = any_err .. "\n" .. err @@ -59,6 +61,9 @@ function download.download(arch, name, version, all) end end end + end + + if has_result then return all_ok, any_err end else -- cgit v1.2.3-55-g6feb