aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/luarocks/fs/unix/tools.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/fs/unix/tools.lua b/src/luarocks/fs/unix/tools.lua
index 313f0dd6..b2237b22 100644
--- a/src/luarocks/fs/unix/tools.lua
+++ b/src/luarocks/fs/unix/tools.lua
@@ -231,7 +231,7 @@ function download(url, filename)
231 assert(type(filename) == "string" or not filename) 231 assert(type(filename) == "string" or not filename)
232 232
233 if cfg.downloader == "wget" then 233 if cfg.downloader == "wget" then
234 local wget_cmd = "wget --no-cache --user-agent="..cfg.user_agent.." --quiet --continue " 234 local wget_cmd = "wget --no-check-certificate --no-cache --user-agent="..cfg.user_agent.." --quiet --continue "
235 if filename then 235 if filename then
236 return fs.execute(wget_cmd.." --output-document ", filename, url) 236 return fs.execute(wget_cmd.." --output-document ", filename, url)
237 else 237 else