Skip to content

Commit e15af99

Browse files
committed
Print build using the standard of Tsuru API
1 parent ac40d3d commit e15af99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/build/server.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func (s *Server) Build(req *pb.BuildRequest, stream pb.Build_BuildServer) error
3939
}
4040

4141
w := &BuildResponseOutputWriter{stream: stream}
42-
fmt.Fprintln(w, "---> Starting container image build")
42+
fmt.Fprintln(w, " ---> Starting container image build")
4343

4444
appFiles, err := s.b.Build(ctx, req, w)
4545
if err != nil {
@@ -52,7 +52,7 @@ func (s *Server) Build(req *pb.BuildRequest, stream pb.Build_BuildServer) error
5252
}
5353
}
5454

55-
fmt.Fprintln(w, "--> Container image build finished")
55+
fmt.Fprintln(w, " ---> Container image build finished")
5656

5757
return nil
5858
}

0 commit comments

Comments
 (0)