mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-09 21:17:09 +08:00
vendor: update buildkit
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
4
vendor/github.com/moby/buildkit/util/progress/progressui/printer.go
generated
vendored
4
vendor/github.com/moby/buildkit/util/progress/progressui/printer.go
generated
vendored
@ -32,6 +32,7 @@ type textMux struct {
|
||||
last map[string]lastStatus
|
||||
notFirst bool
|
||||
nextIndex int
|
||||
desc string
|
||||
}
|
||||
|
||||
func (p *textMux) printVtx(t *trace, dgst digest.Digest) {
|
||||
@ -63,6 +64,9 @@ func (p *textMux) printVtx(t *trace, dgst digest.Digest) {
|
||||
if p.notFirst {
|
||||
fmt.Fprintln(p.w, "")
|
||||
} else {
|
||||
if p.desc != "" {
|
||||
fmt.Fprintf(p.w, "#0 %s\n\n", p.desc)
|
||||
}
|
||||
p.notFirst = true
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user