Skip to content

Commit d015f0f

Browse files
committed
move checkGPGSig ignore to pass go vet
1 parent 0d0cd99 commit d015f0f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tools/download.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,6 @@ var publicKeyHex string = "99020D0452FAA2FA011000D0C5604932111750628F171E4E612D5
6565

6666
func checkGPGSig(fileName string, sigFileName string) error {
6767

68-
// FIXME - try to understand why it fails
69-
return nil
70-
7168
// First, get the content of the file we have signed
7269
fileContent, err := ioutil.ReadFile(fileName)
7370
if err != nil {
@@ -214,9 +211,12 @@ func (t *Tools) Download(name, version, behaviour string) error {
214211
}
215212

216213
err = checkGPGSig(index_file, signature_file)
217-
if err != nil {
218-
return err
219-
}
214+
// FIXME - try to understand why it fails
215+
/*
216+
if err != nil {
217+
return err
218+
}
219+
*/
220220

221221
// Download the tool
222222
t.Logger.Println("Downloading tool " + name + " from " + correctSystem.URL)

0 commit comments

Comments
 (0)