mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 00:47:48 +08:00
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…
x
Reference in New Issue
Block a user