diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2015-03-24 16:29:56 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2015-03-24 16:29:56 -0300 |
commit | b5244bea7814d035173307e2d263fade854cf685 (patch) | |
tree | c8993384aeb465e56f00f6fc9399654ef1f0d0eb /src | |
parent | 30430cf1c5785e15f93ed9547dd919e658289162 (diff) | |
parent | 19ca56c24f450ea090541d29f8db7cb807ca506d (diff) | |
download | luarocks-b5244bea7814d035173307e2d263fade854cf685.tar.gz luarocks-b5244bea7814d035173307e2d263fade854cf685.tar.bz2 luarocks-b5244bea7814d035173307e2d263fade854cf685.zip |
Merge branch 'master' of https://github.com/keplerproject/luarocks
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 |