diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2012-07-11 12:36:51 -0700 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2012-07-11 12:36:51 -0700 |
commit | e825a01d504bfeac265618257530c73357be9c10 (patch) | |
tree | f0b4106d6e7c3e90ae661032cb6ee9f8e92b8b2e | |
parent | 5e59bbd94683286b4dd232508fa2c2e8ccdc70e0 (diff) | |
parent | 5b412ea4edbe0a5f084a60ecd1c5479768bc233e (diff) | |
download | luarocks-e825a01d504bfeac265618257530c73357be9c10.tar.gz luarocks-e825a01d504bfeac265618257530c73357be9c10.tar.bz2 luarocks-e825a01d504bfeac265618257530c73357be9c10.zip |
Merge pull request #85 from norman/fix-mode-string
Fix mode string in call to io.open
-rw-r--r-- | src/luarocks/fs/lua.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/fs/lua.lua b/src/luarocks/fs/lua.lua index 67c3ce0f..09175758 100644 --- a/src/luarocks/fs/lua.lua +++ b/src/luarocks/fs/lua.lua | |||
@@ -247,7 +247,7 @@ function copy(src, dest, perms) | |||
247 | if not perms then perms = fs.get_permissions(src) end | 247 | if not perms then perms = fs.get_permissions(src) end |
248 | local src_h, err = io.open(src, "rb") | 248 | local src_h, err = io.open(src, "rb") |
249 | if not src_h then return nil, err end | 249 | if not src_h then return nil, err end |
250 | local dest_h, err = io.open(dest, "wb+") | 250 | local dest_h, err = io.open(dest, "w+b") |
251 | if not dest_h then src_h:close() return nil, err end | 251 | if not dest_h then src_h:close() return nil, err end |
252 | while true do | 252 | while true do |
253 | local block = src_h:read(8192) | 253 | local block = src_h:read(8192) |