Blacklist .git folder in R CMD check

后端 未结 2 433
迷失自我
迷失自我 2020-12-30 20:26

I\'m pretty sure that a lot of you guys out there are using git as CVS. How do you bypass the following warning on R CMD check:

* c         


        
相关标签:
2条回答
  • 2020-12-30 21:13

    The only way I could find to get rid of these stupid messages from my builds is to just filter it out for now: R CMD check . |grep -v .git

    0 讨论(0)
  • 2020-12-30 21:17

    Yes, use .Rbuildignore and then build the .tar.gz and then check the .tar.gz and not the source directory.

    0 讨论(0)
提交回复
热议问题