1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-08-11 17:50:58 +00:00

Ignore error, vet failure

This commit is contained in:
Marc Campbell 2019-03-09 18:38:35 -08:00
parent 11d99cf330
commit 062aa4b34b

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
}