Skip to content

Commit

Permalink
fix: add new lines to check logs
Browse files Browse the repository at this point in the history
  • Loading branch information
majori committed Jul 16, 2024
1 parent 512dcf7 commit e412bf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/cli/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ func runCheck(cmd *cobra.Command, opts checkOptions) error {
}

if n := len(sauces); n > 1 {
cmd.Printf("Checking new versions for %d recipes...", n)
cmd.Printf("Checking new versions for %d recipes...\n", n)
} else {
cmd.Printf("Checking new versions for the recipe \"%s\"...", sauces[0].Recipe.Name)
cmd.Printf("Checking new versions for the recipe \"%s\"...\n", sauces[0].Recipe.Name)
}

errorsFound := false
Expand Down

0 comments on commit e412bf6

Please sign in to comment.