diff options
author | Thijs Schreijer <thijs@thijsschreijer.nl> | 2014-01-13 18:45:42 +0100 |
---|---|---|
committer | Thijs Schreijer <thijs@thijsschreijer.nl> | 2014-01-13 18:45:42 +0100 |
commit | e867e189e73abfd6f5f83995094badd9ddea863d (patch) | |
tree | 74b54b5c1d0607de2ee38dfc9c4f4d7adee02385 | |
parent | 1e0af10c6d824bcebb15d4d61da712911c20f168 (diff) | |
download | luarocks-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.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 24197f47..319a6724 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..' "Starting docs..." '..fs.Q(url)) |
368 | end | 368 | end |