inform user when no updates are found

This commit is contained in:
jane 2021-06-06 00:05:28 -04:00
parent c262e983d4
commit eef823a684
1 changed files with 9 additions and 3 deletions

View File

@ -125,9 +125,15 @@ if programToInstall == nil then
finishInstall(files)
end
else
print("getting updates...")
local files = getAllFiles()
for _, value in ipairs(files) do
downloadFile(value)
if #files == 0 then
print("no updates found.")
else
for _, value in ipairs(files) do
downloadFile(value)
end
finishInstall(files)
end
finishInstall(files)
end