Merge pull request #48 from marccampbell/ignore-response

Ignore error, vet failure
This commit is contained in:
Casey Lee 2019-03-10 08:13:14 -07:00 committed by GitHub
commit 967339e344
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ func NewDockerPullExecutor(input NewDockerPullExecutorInput) common.Executor {
cli.NegotiateAPIVersion(input.Ctx)
reader, err := cli.ImagePull(input.Ctx, imageRef, types.ImagePullOptions{})
input.logDockerResponse(reader, err != nil)
_ = input.logDockerResponse(reader, err != nil)
if err != nil {
return err
}