[R-pkg-devel] Detritus in temp directory - Note from submission of R package in CRAN
On 16/04/2020 1:11 p.m., David Andres Zamora Avila wrote:
Hi,
I submitted my package in CRAN and always appearance the next NOTE.
Flavor: r-devel-linux-x86_64-debian-gcc
Check: for detritus in the temp directory, Result: NOTE
Found the following files/directories:
'RtmpcDoRWjr.nc'
I have tried to solve it in several ways (like if(interactive()), but I not
sure how can I solve it.
How was the file created? What the check wants is that you delete it when you are finished with it. You can use the unlink() function to do that. Duncan Murdoch