try this instead
This commit is contained in:
parent
5c0cf083d9
commit
bbf2d23eb4
@ -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())
|
local filehash = hash.sha256(destfile.readAll() .. "\n") -- newline is weird hack because of awkward hashes
|
||||||
destfile.close()
|
destfile.close()
|
||||||
if filehash ~= v.sha256 then
|
if filehash ~= v.sha256 then
|
||||||
toDownload[#toDownload+1] = v
|
toDownload[#toDownload+1] = v
|
||||||
|
@ -1,2 +1 @@
|
|||||||
print("Hello, World!")
|
print("Hello, World!")
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user