Skip to content

Commit

Permalink
Add newline at end of "ec validate image" outputs
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Bestavros <mbestavr@redhat.com>
  • Loading branch information
mbestavros committed Oct 18, 2023
1 parent 976befd commit e728c82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/applicationsnapshot/report.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ func (r Report) WriteAll(targets []string, p format.TargetParser) (allErrors err

if data, err := r.toFormat(target.Format); err != nil {
allErrors = multierror.Append(allErrors, err)
} else if _, err := target.Write(data); err != nil {
} else if _, err := target.Write(append(data, "\n"...)); err != nil {
allErrors = multierror.Append(allErrors, err)
}
}
Expand Down

0 comments on commit e728c82

Please sign in to comment.