fix everywhere
This commit is contained in:
parent
3d23d1b618
commit
86d335f53e
@ -78,7 +78,7 @@ local function main()
|
||||
-- Check the validity of the hash, this acts both as a checksum
|
||||
-- and a way to raise an error if the index is incorrect
|
||||
tempfile = fs.open("/tmp/" .. v.hash .. ".lua", "r")
|
||||
local filehash = hash.sha256(tempfile.readAll())
|
||||
local filehash = hash.sha256(tempfile.readAll() .. "\n") -- newline is weird hack because of awkward hashes
|
||||
tempfile.close()
|
||||
if filehash ~= v.hash then
|
||||
log.error("File " .. v.dest .. " (from " .. v.src .. ") has a mismatched hash.")
|
||||
|
Loading…
x
Reference in New Issue
Block a user