Merge pull request #609 from MihailRis/add-network-tests

Add network tests
This commit is contained in:
MihailRis
2025-09-14 16:04:16 +03:00
committed by GitHub
7 changed files with 93 additions and 16 deletions
+3 -3
View File
@@ -13,9 +13,9 @@ end
function refresh()
document.list:clear()
local available = pack.get_available()
local infos = pack.get_info(available)
for _, name in ipairs(available) do
local allpacks = table.merge(pack.get_available(), pack.get_installed())
local infos = pack.get_info(allpacks)
for _, name in ipairs(allpacks) do
local info = infos[name]
local scripts_dir = info.path.."/scripts/app"
if not file.exists(scripts_dir) then