-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
renv 1.0.11 creates object in global environment #2017
Comments
Thanks; this is most likely an issue with some of the native extensions introduced in the most recent release of
in your project |
Thank you, and apologies for not getting back to you about this earlier. In case this might still be helpful - setting |
Thanks! This should now be fixed in the development version of For what it's worth, the issue here should have no other ill effects. |
I just upgraded from renv 1.0.7 to 1.0.11 and am finding that
source("renv/activate.R")
in the .Rprofile creates an object namedobject
of typecall
in the global environment. In a fresh project, the value ofobject
issource("renv/activate.R")
, but if I have some other R scripts in the project the value is the last call in one of those scripts. I can confirm that clearing the global environment withrm(list = ls())
and manually runningsource("renv/activate.R")
creates this object again. Could this be a bug in one of the recent updates of renv?The text was updated successfully, but these errors were encountered: