From 51f79d47499502ea5c06e703de5941f083db4a0a Mon Sep 17 00:00:00 2001 From: Kodi Craft Date: Tue, 25 Mar 2025 19:14:15 +0100 Subject: [PATCH] reduce useless downloads --- install.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.lua b/install.lua index 31f2788..b735206 100644 --- a/install.lua +++ b/install.lua @@ -58,7 +58,7 @@ local function main() local destfile = fs.open(v.dest, "r") local filehash = hash.sha256(destfile.readAll() .. "\n") -- newline is weird hack because of awkward hashes destfile.close() - if filehash ~= v.sha256 then + if filehash ~= v.hash then toDownload[#toDownload+1] = v end end