mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-04-26 13:34:45 +00:00
Merge pull request #321 from technosophos/master
Log errors inspecting images.
This commit is contained in:
commit
a8540d0404
1 changed files with 2 additions and 0 deletions
|
@ -244,6 +244,8 @@ func (b *Builder) setup() error {
|
||||||
if err := b.dockerClient.Images.Pull(b.Build.Image); err != nil {
|
if err := b.dockerClient.Images.Pull(b.Build.Image); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
} else if err != nil {
|
||||||
|
log.Errf("failed to inspect image %s", b.Build.Image)
|
||||||
}
|
}
|
||||||
|
|
||||||
// create the Docker image
|
// create the Docker image
|
||||||
|
|
Loading…
Reference in a new issue