CmdDiagnostics: Implemented diagnostics command

This commit is contained in:
Paul Beckingham 2016-03-17 17:54:12 -04:00
parent 249881347a
commit 06dfce2040
3 changed files with 97 additions and 4 deletions

View file

@ -214,7 +214,7 @@ int dispatchCommand (
else if (closeEnough (allCommands[2], args[1], 2)) status = CmdConfig ();
else if (closeEnough (allCommands[3], args[1], 2)) status = CmdContinue ();
else if (closeEnough (allCommands[4], args[1], 2)) status = CmdDefine (rules);
else if (closeEnough (allCommands[5], args[1], 2)) status = CmdDiagnostics ();
else if (closeEnough (allCommands[5], args[1], 2)) status = CmdDiagnostics (log);
else if (closeEnough (allCommands[6], args[1], 2)) status = CmdExport ();
else if (closeEnough (allCommands[7], args[1], 2)) status = CmdGaps ();
else if (closeEnough (allCommands[8], args[1], 2)) status = CmdImport ();