aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThijs Schreijer <thijs@thijsschreijer.nl>2014-01-13 18:45:42 +0100
committerThijs Schreijer <thijs@thijsschreijer.nl>2014-01-13 18:45:42 +0100
commite867e189e73abfd6f5f83995094badd9ddea863d (patch)
tree74b54b5c1d0607de2ee38dfc9c4f4d7adee02385
parent1e0af10c6d824bcebb15d4d61da712911c20f168 (diff)
downloadluarocks-e867e189e73abfd6f5f83995094badd9ddea863d.tar.gz
luarocks-e867e189e73abfd6f5f83995094badd9ddea863d.tar.bz2
luarocks-e867e189e73abfd6f5f83995094badd9ddea863d.zip
bugfix doc on windows
- path with spaces could not be opened - missing parameter for 'start'
-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 24197f47..319a6724 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..' "Starting docs..." '..fs.Q(url))
368end 368end