Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit e984f76

Browse files
authored
Merge pull request #948 from docker/fix-compose-pull
2 parents 8d7f213 + 5ffdaa5 commit e984f76

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

local/compose.go

+1-3
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,6 @@ func (s *local) applyPullPolicy(ctx context.Context, service types.ServiceConfig
127127
func toProgressEvent(jm jsonmessage.JSONMessage, w progress.Writer) {
128128
if jm.Progress != nil {
129129
if jm.Progress.Total != 0 {
130-
percentage := int(float64(jm.Progress.Current)/float64(jm.Progress.Total)*100) / 2
131-
numSpaces := 50 - percentage
132130
status := progress.Working
133131
if jm.Status == "Pull complete" {
134132
status = progress.Done
@@ -137,7 +135,7 @@ func toProgressEvent(jm jsonmessage.JSONMessage, w progress.Writer) {
137135
ID: jm.ID,
138136
Text: jm.Status,
139137
Status: status,
140-
StatusText: fmt.Sprintf("[%s>%s] ", strings.Repeat("=", percentage), strings.Repeat(" ", numSpaces)),
138+
StatusText: jm.Progress.String(),
141139
})
142140
} else {
143141
if jm.Error != nil {

0 commit comments

Comments
 (0)