You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The install_git function has an argument that is called args and is deprecated. The problem is that install_git passes arguments through to install via ... and args is a valid argument I want to pass to install.
I tried using INSTALL_opts which should work it's way down to install.packages, but that doesn't seem to work. I believe a solution could remove the current deprecated args argument from install_git. Here is an example of some code that I'm having trouble with:
devtools::install_git("a.repo.url.here",
branch="master",
dependencies=FALSE,
args=c("--no-multiarch"))
Error: Command failed (1)
In addition: Warning message:
`args` is deprecated
This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/
lockbot
locked and limited conversation to collaborators
Sep 18, 2018
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
bugan unexpected problem or unintended behaviorinstall
The
install_git
function has an argument that is calledargs
and is deprecated. The problem is thatinstall_git
passes arguments through toinstall
via...
andargs
is a valid argument I want to pass toinstall
.I tried using
INSTALL_opts
which should work it's way down toinstall.packages
, but that doesn't seem to work. I believe a solution could remove the current deprecatedargs
argument frominstall_git
. Here is an example of some code that I'm having trouble with:Trying INSTALL_opts
--no-multiarch
is ignored completelyThe text was updated successfully, but these errors were encountered: