Skip to content

Commit 47e4c25

Browse files
committed
build: missing newline when printing build details on error
Signed-off-by: CrazyMax <[email protected]> (cherry picked from commit d45601f)
1 parent 3702e17 commit 47e4c25

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

util/desktop/desktop.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,6 @@ func (e *ErrorWithBuildRef) Print(w io.Writer) error {
8181
if _, err := console.ConsoleFromFile(os.Stderr); err == nil {
8282
term = true
8383
}
84-
fmt.Fprintf(w, "\n%s", BuildDetailsOutput(map[string]string{"default": e.Ref}, term))
84+
fmt.Fprintf(w, "\n%s\n", BuildDetailsOutput(map[string]string{"default": e.Ref}, term))
8585
return nil
8686
}

0 commit comments

Comments
 (0)