aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/luarocks/fs/win32.lua9
-rw-r--r--src/luarocks/fs/win32/tools.lua2
2 files changed, 10 insertions, 1 deletions
diff --git a/src/luarocks/fs/win32.lua b/src/luarocks/fs/win32.lua
index 0280b3f0..9f85ac05 100644
--- a/src/luarocks/fs/win32.lua
+++ b/src/luarocks/fs/win32.lua
@@ -9,6 +9,15 @@ local cfg = require("luarocks.cfg")
9local dir = require("luarocks.dir") 9local dir = require("luarocks.dir")
10local util = require("luarocks.util") 10local util = require("luarocks.util")
11 11
12-- Monkey patch io.popen and os.execute to make sure quoting
13-- works as expected.
14-- See http://lua-users.org/lists/lua-l/2013-11/msg00367.html
15local _prefix = "type NUL && "
16local _popen, _execute = io.popen, os.execute
17io.popen = function(cmd, ...) return _popen(_prefix..cmd, ...) end
18os.execute = function(cmd, ...) return _execute(_prefix..cmd, ...) end
19
20
12--- Annotate command string for quiet execution. 21--- Annotate command string for quiet execution.
13-- @param cmd string: A command-line string. 22-- @param cmd string: A command-line string.
14-- @return string: The command-line, with silencing annotation. 23-- @return string: The command-line, with silencing annotation.
diff --git a/src/luarocks/fs/win32/tools.lua b/src/luarocks/fs/win32/tools.lua
index 1c0131c7..1d302288 100644
--- a/src/luarocks/fs/win32/tools.lua
+++ b/src/luarocks/fs/win32/tools.lua
@@ -357,7 +357,7 @@ local md5_cmd = {
357function get_md5(file) 357function get_md5(file)
358 local cmd = md5_cmd[cfg.md5checker] 358 local cmd = md5_cmd[cfg.md5checker]
359 if not cmd then return nil end 359 if not cmd then return nil end
360 local pipe = io.popen(cmd.." "..fs.absolute_name(file)) -- should be in fs.Q() 360 local pipe = io.popen(cmd.." "..fs.Q(fs.absolute_name(file)))
361 local computed = pipe:read("*a") 361 local computed = pipe:read("*a")
362 pipe:close() 362 pipe:close()
363 if computed then 363 if computed then