aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2017-09-29 11:49:58 -0300
committerGitHub <noreply@github.com>2017-09-29 11:49:58 -0300
commite64f83bc3723d28a3b83ff08bccfe332b1e7fc0b (patch)
tree08c5b87d7ef78e87b030149fc8cb7c3b7c1008f4
parent147003f6176be5e0ee18011d8e72621fe4df86be (diff)
parent2de11bd8d94951f2f4272dcef47b48d6c7d1d860 (diff)
downloadluarocks-e64f83bc3723d28a3b83ff08bccfe332b1e7fc0b.tar.gz
luarocks-e64f83bc3723d28a3b83ff08bccfe332b1e7fc0b.tar.bz2
luarocks-e64f83bc3723d28a3b83ff08bccfe332b1e7fc0b.zip
Merge pull request #732 from mikz/patch-1
read just one line when checking md5
-rw-r--r--src/luarocks/fs/tools.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/fs/tools.lua b/src/luarocks/fs/tools.lua
index 16dc9cf2..991c25cb 100644
--- a/src/luarocks/fs/tools.lua
+++ b/src/luarocks/fs/tools.lua
@@ -144,7 +144,7 @@ function tools.get_md5(file)
144 local cmd = md5_cmd[cfg.md5checker] 144 local cmd = md5_cmd[cfg.md5checker]
145 if not cmd then return nil, "no MD5 checker command configured" end 145 if not cmd then return nil, "no MD5 checker command configured" end
146 local pipe = io.popen(cmd.." "..fs.Q(fs.absolute_name(file))) 146 local pipe = io.popen(cmd.." "..fs.Q(fs.absolute_name(file)))
147 local computed = pipe:read("*a") 147 local computed = pipe:read("*l")
148 pipe:close() 148 pipe:close()
149 if computed then 149 if computed then
150 computed = computed:match("("..("%x"):rep(32)..")") 150 computed = computed:match("("..("%x"):rep(32)..")")