Skip to content
This repository has been archived by the owner on Oct 18, 2022. It is now read-only.

Commit

Permalink
Merge pull request #100 from velocity-ci/longer-carriage-return-padding
Browse files Browse the repository at this point in the history
[backend] Pad the carriage returns to 100 chars
  • Loading branch information
VJftw authored Nov 17, 2018
2 parents c53c966 + f2f7a57 commit f7b3087
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/pkg/velocity/container.go
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ func handlePullPushOutput(b []byte) string {
s += o.Status
}
// add padding to 80
for len(s) < 80 {
for len(s) < 100 {
s += " "
}
if strings.Contains(o.Status, "Downloaded newer image") ||
Expand Down

0 comments on commit f7b3087

Please sign in to comment.