Skip to content

Commit

Permalink
Strip unnecessary carriage return (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarumaj authored Oct 6, 2023
1 parent f636c20 commit 02b9990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/util/concurrency.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func NewInterrupt() *interrupt {
select {

case <-interrupt:
fmt.Fprintln(os.Stderr, CheckColors(color.RedString, CheckColors(color.RedString, "\nCurrent execution cannot be interrupted!\r")))
fmt.Fprintln(os.Stderr, CheckColors(color.RedString, CheckColors(color.RedString, "\nCurrent execution cannot be interrupted!")))

case <-quit:
return
Expand Down

0 comments on commit 02b9990

Please sign in to comment.