Merge pull request #166 from mtrmac/error-pasto

Fix a pasto in an error message
This commit is contained in:
Daniel J Walsh 2016-08-16 19:24:25 +02:00 committed by GitHub
commit 50f45932f9

View File

@ -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 {