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

com.twitter.finagle.ssl.Util.scala Maven / Gradle / Ivy

package com.twitter.finagle.ssl

object Shell {
  def run(args: Array[String]) {
    val process = Runtime.getRuntime.exec(args)
    process.waitFor()
    require(process.exitValue == 0, "Failed to run command '%s'".format(args.mkString(" ")))
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy