aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2011-09-10 15:05:37 -0300
committerHisham Muhammad <hisham@gobolinux.org>2011-09-10 15:05:37 -0300
commit832e6aa16d5977e57ca73064f8377259801ce160 (patch)
tree1781ab4e5344ae6687c9d9e69c3715b27c4db790
parentdd87821bc1c2d2bf19e9531626009c09aeb36166 (diff)
downloadluarocks-832e6aa16d5977e57ca73064f8377259801ce160.tar.gz
luarocks-832e6aa16d5977e57ca73064f8377259801ce160.tar.bz2
luarocks-832e6aa16d5977e57ca73064f8377259801ce160.zip
Fix variable exported.
(patch by David Manura)
-rw-r--r--src/luarocks/path.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/path.lua b/src/luarocks/path.lua
index 8c795e8b..44e1aa63 100644
--- a/src/luarocks/path.lua
+++ b/src/luarocks/path.lua
@@ -309,7 +309,7 @@ end
309-- @return boolean This function always succeeds. 309-- @return boolean This function always succeeds.
310function run(...) 310function run(...)
311 util.printout(cfg.export_lua_path:format(package.path)) 311 util.printout(cfg.export_lua_path:format(package.path))
312 util.printout(cfg.export_lua_cpath:format(package.path)) 312 util.printout(cfg.export_lua_cpath:format(package.cpath))
313 return true 313 return true
314end 314end
315 315