From da298638a2464b41eac08acd3e1bdece2261b9ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Tue, 16 Aug 2016 18:44:29 +0200 Subject: [PATCH] Fix a pasto in an error message --- cmd/skopeo/signing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/skopeo/signing.go b/cmd/skopeo/signing.go index aa097d1a..3131e01f 100644 --- a/cmd/skopeo/signing.go +++ b/cmd/skopeo/signing.go @@ -62,7 +62,7 @@ func standaloneVerify(context *cli.Context) error { unverifiedManifest, err := ioutil.ReadFile(manifestPath) if err != nil { - return fmt.Errorf("Error reading manifest from %s: %v", signaturePath, err) + return fmt.Errorf("Error reading manifest from %s: %v", manifestPath, err) } unverifiedSignature, err := ioutil.ReadFile(signaturePath) if err != nil {