diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2011-09-10 15:05:37 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2011-09-10 15:05:37 -0300 |
commit | 832e6aa16d5977e57ca73064f8377259801ce160 (patch) | |
tree | 1781ab4e5344ae6687c9d9e69c3715b27c4db790 | |
parent | dd87821bc1c2d2bf19e9531626009c09aeb36166 (diff) | |
download | luarocks-832e6aa16d5977e57ca73064f8377259801ce160.tar.gz luarocks-832e6aa16d5977e57ca73064f8377259801ce160.tar.bz2 luarocks-832e6aa16d5977e57ca73064f8377259801ce160.zip |
Fix variable exported.
(patch by David Manura)
-rw-r--r-- | src/luarocks/path.lua | 2 |
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. |
310 | function run(...) | 310 | function 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 |
314 | end | 314 | end |
315 | 315 | ||