We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 805f22d commit b7f5db4Copy full SHA for b7f5db4
legacy/builder/types/context.go
@@ -200,7 +200,10 @@ func (ctx *Context) ExtractBuildOptions() *properties.Map {
200
201
func (ctx *Context) PushProgress() {
202
if ctx.ProgressCB != nil {
203
- ctx.ProgressCB(&rpc.TaskProgress{Percent: ctx.Progress.Progress})
+ ctx.ProgressCB(&rpc.TaskProgress{
204
+ Percent: ctx.Progress.Progress,
205
+ Completed: ctx.Progress.Progress >= 100.0,
206
+ })
207
}
208
209
0 commit comments