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
options(repos= c(
`CRAN`="https://cran.rstudio.com/",
`Oregon State University`="https://ftp.osuosl.org/pub/cran/",
`University of California, Berkeley`="https://cran.cnr.berkeley.edu/"
))
Then, take a snapshot and look at the lockfile.
Observe
The repos in the lockfile are ambiguous, because they are separated with commas.
Repos: CRAN=https://cran.rstudio.com/, Oregon State
University=https://ftp.osuosl.org/pub/cran/, University of
California, Berkeley=https://cran.cnr.berkeley.edu/
In other words, this parses to:
CRAN=https://cran.rstudio.com/
Oregon State University=https://ftp.osuosl.org/pub/cran/
University of California
Berkeley=https://cran.cnr.berkeley.edu/
Repro
Set the following repos option:
Then, take a snapshot and look at the lockfile.
Observe
The repos in the lockfile are ambiguous, because they are separated with commas.
In other words, this parses to:
Details
Appears to be happening here:
packrat/R/lockfile.R
Lines 35 to 40 in d95fa76
We probably need to escape commas or choose a different delimiter.
The text was updated successfully, but these errors were encountered: