aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2018-08-11 12:52:31 -0300
committerHisham Muhammad <hisham@gobolinux.org>2018-08-11 12:52:31 -0300
commit7477142abe98b99a4d146cf25c6f3bd93fe2cdd8 (patch)
treed6586cdbeb44efd928cb29613ccc4d54353e1b40
parente19230b9d5672a60bd25534e81c621ad85defbf9 (diff)
downloadluarocks-7477142abe98b99a4d146cf25c6f3bd93fe2cdd8.tar.gz
luarocks-7477142abe98b99a4d146cf25c6f3bd93fe2cdd8.tar.bz2
luarocks-7477142abe98b99a4d146cf25c6f3bd93fe2cdd8.zip
add mkdir to the list of WIN_TOOLS used in non-binary Windows mode
-rw-r--r--src/luarocks/core/cfg.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/core/cfg.lua b/src/luarocks/core/cfg.lua
index e0066150..7a764160 100644
--- a/src/luarocks/core/cfg.lua
+++ b/src/luarocks/core/cfg.lua
@@ -716,7 +716,7 @@ function cfg.init(lua_data, project_dir, warning)
716 local defaults = make_defaults(lua_version, processor, platforms, cfg.home) 716 local defaults = make_defaults(lua_version, processor, platforms, cfg.home)
717 717
718 if platforms.windows and hardcoded.WIN_TOOLS then 718 if platforms.windows and hardcoded.WIN_TOOLS then
719 local tools = { "SEVENZ", "CP", "FIND", "LS", "MD5SUM", "PWD", "RMDIR", "TEST", "WGET" } 719 local tools = { "SEVENZ", "CP", "FIND", "LS", "MD5SUM", "PWD", "RMDIR", "TEST", "WGET", "MKDIR" }
720 for _, tool in ipairs(tools) do 720 for _, tool in ipairs(tools) do
721 defaults.variables[tool] = hardcoded.WIN_TOOLS .. "/" .. defaults.variables[tool] .. ".exe" 721 defaults.variables[tool] = hardcoded.WIN_TOOLS .. "/" .. defaults.variables[tool] .. ".exe"
722 end 722 end