def sshOutput()

in src/main/scala/com/gu/ssm/UI.scala [67:72]


  def sshOutput(rawOutput: Boolean)(result: (InstanceId, Seq[Output])): ProgramResult = ProgramResult(
    if (rawOutput){
      result._2
    } else {
      Metadata(s"========= ${result._1.id} =========") +: result._2
    }