Change "command_exec" to just "exec"

This commit is contained in:
Eugene Yokota 2016-03-21 18:37:43 -04:00
parent 5e0b087daa
commit 75deb4e55d
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ object Serialization {
implicit val formats = DefaultFormats
(json \ "type").toOption match {
case Some(JString("command_exec")) =>
case Some(JString("exec")) =>
(json \ "command_line").toOption match {
case Some(JString(cmd)) => Right(Execution(cmd))
case _ => Left("Missing or invalid command_line field")