Closed dan9401 closed 3 years ago
I think this is related to when the data files are fetched via git-lfs, perhaps you need to avoid using LazyData: true
in these cases.
I don't think there is anything we could do in remotes to change this unfortunately.
Perhaps you could open an issue at https://community.rstudio.com and see if other community members have advice on best practices when using git-lfs?
It simply isn't true that there is "nothing you could do" in remotes. remotes should support 'git-lfs clone' just like it supports 'git clone'. LFS is the recommended way to support binary files in git, it isn't a "niche" solution.
Hi, we had an install error when running
devtools::install_github("braverock/FactorAnalytics")
:The error is triggered by
LazyData: true
when installed from remote, and only seems to occur in repos with git-lfs objects, see carlanetto/M4comp2018#1 and braverock/FactorAnalytics#47.devtools::install_github("braverock/FactorAnalytics")
works whenLazyData: true
is removed from DESCRIPTION, we can also clone and build from local source without error.Thanks.