Skip to content

Drop support for MKR 1000 and MKR Vidor 4000 #209

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 17 commits into from
Aug 17, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
rename gpg key
  • Loading branch information
alessio-perugini committed Aug 9, 2023
commit 3347f306563f658d830270b6969c9597623c7d9d
2 changes: 1 addition & 1 deletion indexes/download/download.go
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ func verifyPackageIndex(indexPath, signaturePath *paths.Path) (bool, error) {

// verifyPluginFirmwareIndex verify if the signature is valid for the provided plugin firmware index
func verifyPluginFirmwareIndex(indexPath, signaturePath *paths.Path) (bool, error) {
arduinoKeyringFile, err := globals.Keys.Open("keys/module_firmware_index_public.gpg.key")
arduinoKeyringFile, err := globals.Keys.Open("keys/plugin_firmware_index_public.gpg.key")
if err != nil {
return false, fmt.Errorf("could not find bundled signature keys: %s", err)
}
Expand Down
2 changes: 1 addition & 1 deletion indexes/firmwareindex/firmwareindex.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func LoadIndex(jsonIndexFile *paths.Path) (*Index, error) {
}

jsonSignatureFile := jsonIndexFile.Parent().Join(jsonIndexFile.Base() + ".sig")
arduinoKeyringFile, err := globals.Keys.Open("keys/module_firmware_index_public.gpg.key")
arduinoKeyringFile, err := globals.Keys.Open("keys/plugin_firmware_index_public.gpg.key")
if err != nil {
return nil, fmt.Errorf("could not find bundled signature keys: %s", err)

Expand Down