diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2013-10-24 21:10:11 -0200 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2013-10-24 21:10:11 -0200 |
commit | 23a7eae336076d4bb3d443f5fc306c305bc8e077 (patch) | |
tree | aaeaeca5a6fd2ffc5f758a341cd5ab11e0298b83 | |
parent | 4c967342bd2ed77e007334485e1039e516794669 (diff) | |
download | luarocks-23a7eae336076d4bb3d443f5fc306c305bc8e077.tar.gz luarocks-23a7eae336076d4bb3d443f5fc306c305bc8e077.tar.bz2 luarocks-23a7eae336076d4bb3d443f5fc306c305bc8e077.zip |
Accidentally ate a space, sorry!
-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 bfabe9a9..6109ac8f 100644 --- a/src/luarocks/fs/win32/tools.lua +++ b/src/luarocks/fs/win32/tools.lua | |||
@@ -280,7 +280,7 @@ function download(url, filename, cache) | |||
280 | ok = fs.execute(wget_cmd.." --timestamping "..fs.Q(url).." 2> NUL 1> NUL") | 280 | ok = fs.execute(wget_cmd.." --timestamping "..fs.Q(url).." 2> NUL 1> NUL") |
281 | fs.pop_dir() | 281 | fs.pop_dir() |
282 | elseif filename then | 282 | elseif filename then |
283 | ok = fs.execute(wget_cmd.." --output-document "..fs.Q(filename)..fs.Q(url).." 2> NUL 1> NUL") | 283 | ok = fs.execute(wget_cmd.." --output-document "..fs.Q(filename).." "..fs.Q(url).." 2> NUL 1> NUL") |
284 | else | 284 | else |
285 | ok = fs.execute(wget_cmd..fs.Q(url).." 2> NUL 1> NUL") | 285 | ok = fs.execute(wget_cmd..fs.Q(url).." 2> NUL 1> NUL") |
286 | end | 286 | end |