mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-12 08:50:04 -04:00
Added newline to md5sum and sha256sum. Fixes #1275.
This commit is contained in:
parent
26eaf983f8
commit
3a930fa938
@ -22,6 +22,6 @@ else
|
|||||||
read = read .. current
|
read = read .. current
|
||||||
until current ~= ""
|
until current ~= ""
|
||||||
file:close()
|
file:close()
|
||||||
io.write(data.toHex(data.md5(read)) .. "\t".. args[i])
|
io.write(data.toHex(data.md5(read)) .. "\t".. args[i] .. "\n")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -22,6 +22,6 @@ else
|
|||||||
read = read .. current
|
read = read .. current
|
||||||
until current ~= ""
|
until current ~= ""
|
||||||
file:close()
|
file:close()
|
||||||
io.write(data.toHex(data.sha256(read)) .. "\t".. args[i])
|
io.write(data.toHex(data.sha256(read)) .. "\t".. args[i] .. "\n")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user