diff options
author | hisham <hisham@9ca3f7c1-7366-0410-b1a3-b5c78f85698c> | 2009-05-26 17:41:34 +0000 |
---|---|---|
committer | hisham <hisham@9ca3f7c1-7366-0410-b1a3-b5c78f85698c> | 2009-05-26 17:41:34 +0000 |
commit | 6ef0a2d8558515e7dd0e49e022aacd0aba56759d (patch) | |
tree | 11b0832009ac2242331aac02cdd6dd07878f4d70 /src | |
parent | b4f32b4d095587982911bb4cf925638d136f902d (diff) | |
download | luarocks-6ef0a2d8558515e7dd0e49e022aacd0aba56759d.tar.gz luarocks-6ef0a2d8558515e7dd0e49e022aacd0aba56759d.tar.bz2 luarocks-6ef0a2d8558515e7dd0e49e022aacd0aba56759d.zip |
minor fix
git-svn-id: http://luarocks.org/svn/luarocks/trunk@23 9ca3f7c1-7366-0410-b1a3-b5c78f85698c
Diffstat (limited to 'src')
-rw-r--r-- | src/luarocks/cfg.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/cfg.lua b/src/luarocks/cfg.lua index 5afb653d..f74c40ad 100644 --- a/src/luarocks/cfg.lua +++ b/src/luarocks/cfg.lua | |||
@@ -16,7 +16,7 @@ local persist = require("luarocks.persist") | |||
16 | local popen_ok, popen_result = pcall(io.popen, "") | 16 | local popen_ok, popen_result = pcall(io.popen, "") |
17 | if popen_ok then | 17 | if popen_ok then |
18 | if popen_result then | 18 | if popen_result then |
19 | result:close() | 19 | popen_result:close() |
20 | end | 20 | end |
21 | else | 21 | else |
22 | print("Your version of Lua does not support io.popen,") | 22 | print("Your version of Lua does not support io.popen,") |