mirror of https://github.com/docker/buildx.git
Merge pull request #1305 from jedevc/progress-group-prefixed-writer
progress: add prefix to vertex progress group
This commit is contained in:
commit
ae59e1f72e
|
@ -24,6 +24,9 @@ func (p *prefixed) Write(v *client.SolveStatus) {
|
|||
if p.force {
|
||||
for _, v := range v.Vertexes {
|
||||
v.Name = addPrefix(p.pfx, v.Name)
|
||||
if v.ProgressGroup != nil {
|
||||
v.ProgressGroup.Name = addPrefix(p.pfx, v.ProgressGroup.Name)
|
||||
}
|
||||
}
|
||||
}
|
||||
p.Writer.Write(v)
|
||||
|
|
Loading…
Reference in New Issue