def fixedUpAwsImage()

in app/models/BuildInfo.scala [21:26]


  def fixedUpAwsImage(awsAccount:String, awsRegion:String):BuildInfo = {
    built_image match {
      case None=>this
      case Some(img)=>copy(built_image=Some(img.fixedUpAwsImage(awsAccount, awsRegion)))
    }
  }