Skip to content

Commit

Permalink
fix: add newline to end of error message
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Aug 17, 2023
1 parent e184648 commit 4f52c94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/database/zip.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func (db *ZipDB) fetchZip() ([]byte, error) {
err := json.Unmarshal(cacheContent, &cache)

if err != nil {
_, _ = fmt.Fprintf(os.Stderr, "Failed to parse cache from %s: %v", cachePath, err)
_, _ = fmt.Fprintf(os.Stderr, "Failed to parse cache from %s: %v\n", cachePath, err)
}
}

Expand Down

0 comments on commit 4f52c94

Please sign in to comment.