diff options
| author | Hisham Muhammad <hisham@gobolinux.org> | 2011-09-17 11:53:06 -0300 |
|---|---|---|
| committer | Hisham Muhammad <hisham@gobolinux.org> | 2011-09-17 11:53:06 -0300 |
| commit | b82a2cc2d1dd88d28000a2ed10f297a5b2a164b4 (patch) | |
| tree | 872acccce5357490792a079dd488fb4e1bdf5c81 | |
| parent | 59fb321e9fb2c5171919c6906c024093bde635ac (diff) | |
| download | luarocks-b82a2cc2d1dd88d28000a2ed10f297a5b2a164b4.tar.gz luarocks-b82a2cc2d1dd88d28000a2ed10f297a5b2a164b4.tar.bz2 luarocks-b82a2cc2d1dd88d28000a2ed10f297a5b2a164b4.zip | |
Add missing bit to fix #46.
| -rw-r--r-- | src/luarocks/show.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/show.lua b/src/luarocks/show.lua index 30b1d1c5..7255ea63 100644 --- a/src/luarocks/show.lua +++ b/src/luarocks/show.lua | |||
| @@ -108,7 +108,7 @@ function run(...) | |||
| 108 | elseif flags["mversion"] then util.printout(version) | 108 | elseif flags["mversion"] then util.printout(version) |
| 109 | else | 109 | else |
| 110 | util.printout() | 110 | util.printout() |
| 111 | util.printout(rockspec.package.." "..rockspec.version.." - "..descript.summary) | 111 | util.printout(rockspec.package.." "..rockspec.version.." - "..(descript.summary or "")) |
| 112 | util.printout() | 112 | util.printout() |
| 113 | if descript.detailed then | 113 | if descript.detailed then |
| 114 | util.printout(format_text(descript.detailed)) | 114 | util.printout(format_text(descript.detailed)) |
