sjednac / sbt-ecr

An SBT plugin for managing Docker images within Amazon ECR.
Other
53 stars 25 forks source link

Fix login error message formatting #19

Closed frosforever closed 6 years ago

frosforever commented 6 years ago

cmd here is a string so cmd.mkString(" ") would take string and treat it like a List[Char] and insert spaces between each one. So hello world becomes h e l l o w o r l d.

Instead we can just grab the string and insert it into the error message.

sjednac commented 6 years ago

Good catch - thank you for the contribution!