diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2013-12-20 18:53:15 -0200 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2014-01-10 16:41:38 -0200 |
commit | a1470202d55e5bf25c6326bed693aa43c1f4727d (patch) | |
tree | 78b960cd8d5d2586b1353c7a3065cd2fab38a287 | |
parent | 62359238b4ef27841343055e25522e057a2c0eb2 (diff) | |
download | luarocks-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.lua | 2 |
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) | |||
364 | end | 364 | end |
365 | 365 | ||
366 | function browser(url) | 366 | function browser(url) |
367 | return fs.execute(cfg.web_browser, url) | 367 | return fs.execute(cfg.web_browser.." "..url) |
368 | end | 368 | end |