Skip to content

Download provisioning binaries from aws #74

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 29 commits into from
Dec 10, 2021
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update internal/binary/index.go
Co-authored-by: Giuseppe Lumia <g.lumia@outlook.com>
  • Loading branch information
2 people authored and polldo committed Dec 10, 2021
commit 180bc3e2caebf30a20a4332851b068123b9019ff
2 changes: 1 addition & 1 deletion internal/binary/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func LoadIndex() (*Index, error) {

keyRing, err := openpgp.ReadKeyRing(bytes.NewReader(gpgkey.IndexPublicKey))
if err != nil {
return nil, fmt.Errorf("retrieving Arduino public key: %w", err)
return nil, fmt.Errorf("cannot retrieve Arduino public GPG key: %w", err)
}

signer, err := openpgp.CheckDetachedSignature(keyRing, bytes.NewReader(index), bytes.NewReader(sig))
Expand Down