Skip to content

Commit

Permalink
#294 adjust output of running container status messages (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
fubarhouse committed Feb 5, 2021
1 parent 7b28478 commit de8414b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/library/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func Status(c Config) {
}
if enabled && !discrete && name != "" {
if s, _ := Service.Status(); s {
fmt.Print(Green(fmt.Sprintf("[*] %s: Running as container %s", name, name)))
fmt.Print(Green(fmt.Sprintf("[*] %s: Running as container %s\n", name, name)))
} else {
fmt.Print(Red(fmt.Sprintf("[ ] %s is not running\n", name)))
}
Expand Down

0 comments on commit de8414b

Please sign in to comment.