Skip to content

Commit 0a5a3f9

Browse files
authored
Add a newline after image output (#123)
1 parent e732dbd commit 0a5a3f9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

internal/gat/gat.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,10 @@ func (g *Gat) printImage(w io.Writer, r io.Reader) error {
229229
}
230230
}
231231

232+
if _, err := w.Write([]byte{'\n'}); err != nil {
233+
return err
234+
}
235+
232236
return nil
233237
}
234238

0 commit comments

Comments
 (0)