this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Avoid printing incorrect "downloaded" message when it can't find a blob

Orual 8b493c71 06cdd9ae

+3 -1
+3 -1
cmd/goat/blob.go
··· 119 119 if err := os.WriteFile(blobPath, blobBytes, 0666); err != nil { 120 120 return err 121 121 } 122 - fmt.Printf("%s\tdownloaded\n", blobPath) 122 + if err == nil { 123 + fmt.Printf("%s\tdownloaded\n", blobPath) 124 + } 123 125 } 124 126 if resp.Cursor != nil && *resp.Cursor != "" { 125 127 cursor = *resp.Cursor