All Downloads are FREE. Search and download functionalities are using the official Maven repository.

abellectl_2.12.1.0.0-RC3.source-code.Build.scala Maven / Gradle / Ivy

There is a newer version: 1.1.0-RC3
Show newest version
package info.hupel.isabelle.cli

import scala.concurrent._

import info.hupel.isabelle.System

object Build extends Command {

  override def run(bundle: Bundle, args: List[String])(implicit ec: ExecutionContext): Future[Unit] = {
    val built = System.build(bundle.env, bundle.configuration)
    if (!built)
      sys.error("build error")
    Future.successful { () }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy