aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2013-12-20 18:53:15 -0200
committerHisham Muhammad <hisham@gobolinux.org>2014-01-10 16:41:38 -0200
commita1470202d55e5bf25c6326bed693aa43c1f4727d (patch)
tree78b960cd8d5d2586b1353c7a3065cd2fab38a287
parent62359238b4ef27841343055e25522e057a2c0eb2 (diff)
downloadluarocks-a1470202d55e5bf25c6326bed693aa43c1f4727d.tar.gz
luarocks-a1470202d55e5bf25c6326bed693aa43c1f4727d.tar.bz2
luarocks-a1470202d55e5bf25c6326bed693aa43c1f4727d.zip
Don't quote URL on Windows. Doesn't seem to work:
https://twitter.com/pchapuis/status/414119212739604480
-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 abbcd844..24197f47 100644
--- a/src/luarocks/fs/win32/tools.lua
+++ b/src/luarocks/fs/win32/tools.lua
@@ -364,5 +364,5 @@ function exists(file)
364end 364end
365 365
366function browser(url) 366function browser(url)
367 return fs.execute(cfg.web_browser, url) 367 return fs.execute(cfg.web_browser.." "..url)
368end 368end