diff --git a/cmd/enbas/show.go b/cmd/enbas/show.go index 5a4f9ea..e4e5658 100644 --- a/cmd/enbas/show.go +++ b/cmd/enbas/show.go @@ -152,8 +152,14 @@ func (c *showCommand) showTimeline(gts *client.Client) error { return nil } - for status := range statuses { + + separator := "────────────────────────────────────────────────────────────────────────" + + fmt.Println(separator) + + for _, status := range statuses { fmt.Println(status) + fmt.Println(separator) } return nil