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

Commit

Permalink
builder-next: fix squash
Browse files Browse the repository at this point in the history
Tagger was not called for BuildKit-mode.

Signed-off-by: Akihiro Suda <[email protected]>
(cherry picked from commit 7fc0f82)
Signed-off-by: Akihiro Suda <[email protected]>
  • Loading branch information
AkihiroSuda committed Mar 21, 2019
1 parent 6e2e248 commit 8d87a2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/server/backend/build/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ func (b *Backend) Build(ctx context.Context, config backend.BuildConfig) (string
if !useBuildKit {
stdout := config.ProgressWriter.StdoutFormatter
fmt.Fprintf(stdout, "Successfully built %s\n", stringid.TruncateID(imageID))
err = tagger.TagImages(image.ID(imageID))
}
err = tagger.TagImages(image.ID(imageID))
return imageID, err
}

Expand Down

0 comments on commit 8d87a2a

Please sign in to comment.