aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhisham <hisham@9ca3f7c1-7366-0410-b1a3-b5c78f85698c>2009-05-26 17:41:34 +0000
committerhisham <hisham@9ca3f7c1-7366-0410-b1a3-b5c78f85698c>2009-05-26 17:41:34 +0000
commit6ef0a2d8558515e7dd0e49e022aacd0aba56759d (patch)
tree11b0832009ac2242331aac02cdd6dd07878f4d70 /src
parentb4f32b4d095587982911bb4cf925638d136f902d (diff)
downloadluarocks-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.lua2
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")
16local popen_ok, popen_result = pcall(io.popen, "") 16local popen_ok, popen_result = pcall(io.popen, "")
17if popen_ok then 17if popen_ok then
18 if popen_result then 18 if popen_result then
19 result:close() 19 popen_result:close()
20 end 20 end
21else 21else
22 print("Your version of Lua does not support io.popen,") 22 print("Your version of Lua does not support io.popen,")