We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 291f711 commit 182bd13Copy full SHA for 182bd13
1 file changed
xtra/MD5SUM.LUA
@@ -30,6 +30,6 @@ local function init()SINE={}for i=1,64 do SINE[i]=math.floor(2^32*math.abs(math.
30
31
if LIB then init()return end
32
if #arg<1 then print((arg[-1] or "?").." "..(arg[0] or "?").." [FILE]...")os.exit(1)
33
-else init()for i=1,#arg do local f,e=io.open(arg[i],"rb")
+else init()for i=1,#arg do local f,e=io.open(arg[i],"rb") --#squish keep-eol
34
if f then local sum=md5_file(f)f:close()if sum then print(sum.." "..arg[i])else print(arg[i]..": ".."Unknown error")os.exit(-1)end
35
- else print(e)os.exit(1)end end end
+ else print(e)os.exit(1)end end end --#squish keep-eol
0 commit comments