Skip to content

Commit

Permalink
prettier task status output
Browse files Browse the repository at this point in the history
  • Loading branch information
jfeodor committed May 28, 2024
1 parent 6a91adf commit 17ba71b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/cmd/output/task.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ var (
)

func PrintTaskStarted(message string) {
fmt.Print(unicodeHourglass + " " + message)
fmt.Print(" " + unicodeHourglass + " " + message)
}

func PrintTaskDone(message string) {
fmt.Println("\r" + greenCheckmark + " " + message + "Done")
fmt.Println("\r " + greenCheckmark + " " + message + "Done")
}

0 comments on commit 17ba71b

Please sign in to comment.