diff options
author | mpeterv <mpeterval@gmail.com> | 2015-03-24 10:53:28 +0300 |
---|---|---|
committer | mpeterv <mpeterval@gmail.com> | 2015-03-24 10:53:28 +0300 |
commit | 19ca56c24f450ea090541d29f8db7cb807ca506d (patch) | |
tree | 5d9296de86409520993de5cc35086481e6a579b8 /src | |
parent | 57c838ec4d0a6dbd75ffe93b9bbf9679f52ed4d2 (diff) | |
download | luarocks-19ca56c24f450ea090541d29f8db7cb807ca506d.tar.gz luarocks-19ca56c24f450ea090541d29f8db7cb807ca506d.tar.bz2 luarocks-19ca56c24f450ea090541d29f8db7cb807ca506d.zip |
Actually direct users to the bug tracker
For some reason 53e0c65 didn't take effect.
Diffstat (limited to 'src')
-rw-r--r-- | src/luarocks/command_line.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/command_line.lua b/src/luarocks/command_line.lua index e35c14ab..495fe855 100644 --- a/src/luarocks/command_line.lua +++ b/src/luarocks/command_line.lua | |||
@@ -207,7 +207,7 @@ function command_line.run_command(...) | |||
207 | local cmd = require(commands[command]) | 207 | local cmd = require(commands[command]) |
208 | local xp, ok, err, exitcode = xpcall(function() return cmd.run(unpack(args)) end, function(err) | 208 | local xp, ok, err, exitcode = xpcall(function() return cmd.run(unpack(args)) end, function(err) |
209 | die(debug.traceback("LuaRocks "..cfg.program_version | 209 | die(debug.traceback("LuaRocks "..cfg.program_version |
210 | .." bug (please report at luarocks-developers@lists.sourceforge.net).\n" | 210 | .." bug (please report at https://github.com/keplerproject/luarocks/issues).\n" |
211 | ..err, 2), cfg.errorcodes.CRASH) | 211 | ..err, 2), cfg.errorcodes.CRASH) |
212 | end) | 212 | end) |
213 | if xp and (not ok) then | 213 | if xp and (not ok) then |