-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Install of package from unknown source fails with renv 0.2.0-49 and later #41
Comments
Thanks! You're correct; I'll fix that. |
Just fixed it up -- please try running |
Thanks, this fix works. Although for renv::upgrade() I get for renv 0.2.0-47 and later:
|
Thanks -- I'll try to investigate. |
Sorry for the trouble. This should be fixed on master again with 85ab7a7. |
No problem. I appreciate great work you are doing. Renv works really great for me. Keep up the good work! |
I'm very glad to hear it :-) Please let us know if you run into any issues! |
When restoring package from unknown source with renv.verbose=TRUE there is error with following message:
Message:
Error in renv_verbose() && renv_pretty_print_records(unknown, "The following package(s) were installed from an unknown source:", : invalid 'y' type in 'x && y'
.Bug was probably introduced with commit:
327eabf
In function renv_restore_preflight_unknown_source:
renv_verbose() && renv_pretty_print(...)
probably should be:
if (renv_verbose()) { renv_pretty_print(...) }
There might be similar issue in function renv_restore_preflight_permissions.
The text was updated successfully, but these errors were encountered: