Closed maelle closed 2 years ago
In https://github.com/ropensci/awardFindR/blob/2c86e2dc10507d3c6ea04a91e7914fb8bd86b134/R/neh.R#L53
a file is created but not deleted which is not optimal (especially for CRAN).
I'd suggest using withr::_localtemp_file() instead as it will be deleted automatically.
withr::_localtemp_file()
fixed!
In https://github.com/ropensci/awardFindR/blob/2c86e2dc10507d3c6ea04a91e7914fb8bd86b134/R/neh.R#L53
a file is created but not deleted which is not optimal (especially for CRAN).
I'd suggest using
withr::_localtemp_file()
instead as it will be deleted automatically.