diff --git a/bookmarks/bookmarks.go b/bookmarks/bookmarks.go index 8f51326..7ac9e0e 100644 --- a/bookmarks/bookmarks.go +++ b/bookmarks/bookmarks.go @@ -61,11 +61,12 @@ func Init() error { err = os.Remove(config.OldBkmkPath) if err != nil { + //nolint:goerr113 return fmt.Errorf( "couldn't delete old bookmarks file (%s), you must delete it yourself to prevent duplicate bookmarks: %w", config.OldBkmkPath, err, - ) //nolint:goerr113,nolintlint + ) } config.BkmkStore = nil }