hack might have been because of emulation bug..?

This commit is contained in:
Kodi Craft 2025-03-25 19:29:22 +01:00
parent fc349f46e4
commit db862f12ef
Signed by: kodi
GPG Key ID: 69D9EED60B242822

View File

@ -56,7 +56,7 @@ local function main()
toDownload[#toDownload+1] = v toDownload[#toDownload+1] = v
else else
local destfile = fs.open(v.dest, "r") local destfile = fs.open(v.dest, "r")
local filehash = hash.sha256(destfile.readAll() .. "\n") -- newline is weird hack because of awkward hashes local filehash = hash.sha256(destfile.readAll())
destfile.close() destfile.close()
if filehash ~= v.hash then if filehash ~= v.hash then
toDownload[#toDownload+1] = v toDownload[#toDownload+1] = v
@ -79,7 +79,7 @@ local function main()
-- Check the validity of the hash, this acts both as a checksum -- Check the validity of the hash, this acts both as a checksum
-- and a way to raise an error if the index is incorrect -- and a way to raise an error if the index is incorrect
tempfile = fs.open("/tmp/" .. v.hash .. ".lua", "r") tempfile = fs.open("/tmp/" .. v.hash .. ".lua", "r")
local filehash = hash.sha256(tempfile.readAll() .. "\n") -- newline is weird hack because of awkward hashes local filehash = hash.sha256(tempfile.readAll())
tempfile.close() tempfile.close()
if filehash ~= v.hash then if filehash ~= v.hash then
log.error("File " .. v.dest .. " (from " .. v.src .. ") has a mismatched hash.") log.error("File " .. v.dest .. " (from " .. v.src .. ") has a mismatched hash.")