Skip to content

Commit

Permalink
Merge branch 'master' into BAF-976/issues-consolidation-ux
Browse files Browse the repository at this point in the history
  • Loading branch information
mikusaq committed Dec 16, 2024
2 parents 541602e + a81b1f5 commit 31a7242
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bap-builder/DockerMode.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ func buildAllDockerImages(contextManager bringauto_context.ContextManager) error
logger.Warn("Bug: multiple Dockerfile present for same image name %s", imageName)
continue
}
return buildSingleDockerImage(imageName, dockerfilePath[0])
err = buildSingleDockerImage(imageName, dockerfilePath[0])
if err != nil {
return err
}
}
return nil
}
Expand Down

0 comments on commit 31a7242

Please sign in to comment.