diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2012-09-03 21:06:29 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2012-09-03 21:06:29 -0300 |
commit | a424a928396058995f0a5141cc7fd879e7fcb0d7 (patch) | |
tree | 9f47b10502ba8851662f3f34e84d5ae26fe06ed0 /src | |
parent | 91600f36fa4eb515cd37d3ba1ef90e71a94d8e5e (diff) | |
download | luarocks-a424a928396058995f0a5141cc7fd879e7fcb0d7.tar.gz luarocks-a424a928396058995f0a5141cc7fd879e7fcb0d7.tar.bz2 luarocks-a424a928396058995f0a5141cc7fd879e7fcb0d7.zip |
Add missing pipe:close()
Diffstat (limited to 'src')
-rw-r--r-- | src/luarocks/fs/win32/tools.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/luarocks/fs/win32/tools.lua b/src/luarocks/fs/win32/tools.lua index 6115f382..d376f56a 100644 --- a/src/luarocks/fs/win32/tools.lua +++ b/src/luarocks/fs/win32/tools.lua | |||
@@ -241,6 +241,7 @@ function find(at) | |||
241 | table.insert(result, (file:gsub("\\", "/"))) | 241 | table.insert(result, (file:gsub("\\", "/"))) |
242 | end | 242 | end |
243 | end | 243 | end |
244 | pipe:close() | ||
244 | return result | 245 | return result |
245 | end | 246 | end |
246 | 247 | ||