add newline to images output

ensure a final newline is always added to images output.

fixes #2388

Signed-off-by: baude <bbaude@redhat.com>
This commit is contained in:
baude 2019-02-20 16:44:23 -06:00
parent 4de0bf9c74
commit ad3ccd69f9
1 changed files with 1 additions and 0 deletions

View File

@ -125,6 +125,7 @@ func (t StdoutTemplateArray) Out() error {
fmt.Fprintln(w, "")
}
}
fmt.Fprintln(w, "")
return w.Flush()
}