mirror of https://github.com/sbt/sbt.git
Change "command_exec" to just "exec"
This commit is contained in:
parent
5e0b087daa
commit
75deb4e55d
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Reference in New Issue