diff options
Diffstat (limited to 'src/luarocks/command_line.lua')
-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 cc2e1683..15b036b0 100644 --- a/src/luarocks/command_line.lua +++ b/src/luarocks/command_line.lua | |||
@@ -208,7 +208,7 @@ function command_line.run_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 luarocks-developers@lists.sourceforge.net).\n" |
211 | ..err, 2)) | 211 | ..err, 2), cfg.errorcodes.CRASH) |
212 | end) | 212 | end) |
213 | if xp and (not ok) then | 213 | if xp and (not ok) then |
214 | die(err, exitcode) | 214 | die(err, exitcode) |