diff options
author | Kir Kolyshkin <kolyshkin@gmail.com> | 2020-10-05 15:55:29 -0700 |
---|---|---|
committer | Kir Kolyshkin <kolyshkin@gmail.com> | 2020-10-05 15:56:44 -0700 |
commit | 684d0079d2cb5f84f65b3313a52ca3fbcbc40350 (patch) | |
tree | 6d4d5d114c749f0b1d44d021be2746eab8bbbf1c /libpod/image | |
parent | 4878dff3e2c89382699c29c10dc5036367275575 (diff) | |
download | podman-684d0079d2cb5f84f65b3313a52ca3fbcbc40350.tar.gz podman-684d0079d2cb5f84f65b3313a52ca3fbcbc40350.tar.bz2 podman-684d0079d2cb5f84f65b3313a52ca3fbcbc40350.zip |
Lowercase some errors
This commit is courtesy of
```
for f in $(git ls-files *.go | grep -v ^vendor/); do \
sed -i 's/\(errors\..*\)"Error /\1"error /' $f;
done
for f in $(git ls-files *.go | grep -v ^vendor/); do \
sed -i 's/\(errors\..*\)"Failed to /\1"failed to /' $f;
done
```
etc.
Self-reviewed using `git diff --word-diff`, found no issues.
Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
Diffstat (limited to 'libpod/image')
-rw-r--r-- | libpod/image/image.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/image/image.go b/libpod/image/image.go index f5bf47694..0900944eb 100644 --- a/libpod/image/image.go +++ b/libpod/image/image.go @@ -867,7 +867,7 @@ func (i *Image) PushImageToReference(ctx context.Context, dest types.ImageRefere // Copy the image to the remote destination manifestBytes, err := cp.Image(ctx, policyContext, dest, src, copyOptions) if err != nil { - return errors.Wrapf(err, "Error copying image to the remote destination") + return errors.Wrapf(err, "error copying image to the remote destination") } digest, err := manifest.Digest(manifestBytes) if err != nil { |