Skip to content

Commit

Permalink
build: missing newline when printing build details on error
Browse files Browse the repository at this point in the history
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
(cherry picked from commit d45601f)
  • Loading branch information
crazy-max committed Jul 3, 2023
1 parent 3702e17 commit 47e4c25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/desktop/desktop.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@ func (e *ErrorWithBuildRef) Print(w io.Writer) error {
if _, err := console.ConsoleFromFile(os.Stderr); err == nil {
term = true
}
fmt.Fprintf(w, "\n%s", BuildDetailsOutput(map[string]string{"default": e.Ref}, term))
fmt.Fprintf(w, "\n%s\n", BuildDetailsOutput(map[string]string{"default": e.Ref}, term))
return nil
}

0 comments on commit 47e4c25

Please sign in to comment.