8000 rename gpg key · arduino/arduino-fwuploader@3347f30 · GitHub
[go: up one dir, main page]

Skip to content
Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 3347f30

Browse files
rename gpg key
1 parent 17a6364 commit 3347f30

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

indexes/download/download.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ func verifyPackageIndex(indexPath, signaturePath *paths.Path) (bool, error) {
316316

317317
// verifyPluginFirmwareIndex verify if the signature is valid for the provided plugin firmware index
318318
func verifyPluginFirmwareIndex(indexPath, signaturePath *paths.Path) (bool, error) {
319-
arduinoKeyringFile, err := globals.Keys.Open("keys/module_firmware_index_public.gpg.key")
319+
arduinoKeyringFile, err := globals.Keys.Open("keys/plugin_firmware_index_public.gpg.key")
320320
if err != nil {
321321
return false, fmt.Errorf("could not find bundled signature keys: %s", err)
322322
}

indexes/firmwareindex/firmwareindex.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func LoadIndex(jsonIndexFile *paths.Path) (*Index, error) {
7777
}
7878

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

0 commit comments

Comments
 (0)
0