aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThijs Schreijer <thijs@thijsschreijer.nl>2013-09-09 15:46:42 +0200
committerThijs Schreijer <thijs@thijsschreijer.nl>2013-09-09 15:46:42 +0200
commita5a94c617eee3247f0346e452dbf09921e2f1b5f (patch)
tree95d7e4ea8ea67a4902d163416eba6c41c6581be7
parent6cab7732e5c3ad98593f17507fde4de0c0db3ab8 (diff)
parent5e1bc7d01b0cad40f718d850faf3520afd8644a8 (diff)
downloadluarocks-a5a94c617eee3247f0346e452dbf09921e2f1b5f.tar.gz
luarocks-a5a94c617eee3247f0346e452dbf09921e2f1b5f.tar.bz2
luarocks-a5a94c617eee3247f0346e452dbf09921e2f1b5f.zip
Merge branch 'master' of https://github.com/keplerproject/luarocks into move_win_binaries
-rw-r--r--src/luarocks/fs/win32/tools.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/fs/win32/tools.lua b/src/luarocks/fs/win32/tools.lua
index 6960ab35..7bb69d9e 100644
--- a/src/luarocks/fs/win32/tools.lua
+++ b/src/luarocks/fs/win32/tools.lua
@@ -107,7 +107,7 @@ end
107-- @return boolean: true on success, false on failure. 107-- @return boolean: true on success, false on failure.
108function make_dir(directory) 108function make_dir(directory)
109 assert(directory) 109 assert(directory)
110 fs.execute(fs.quiet(vars.MKDIR.." "..fs.Q(directory))) 110 fs.execute(fs.quiet(vars.MKDIR.." -p "..fs.Q(directory)))
111 if not fs.is_dir(directory) then 111 if not fs.is_dir(directory) then
112 return false, "failed making directory "..directory 112 return false, "failed making directory "..directory
113 end 113 end