-
Notifications
You must be signed in to change notification settings - Fork 3
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
glue and cli available #72
Comments
any benefit of using this over |
Performance-wise no. But the code would probably be less verbose, e.g. cran_mirror <- "https://cran.r-project.org/"
x <- "mongolite"
version <- "2.7.1"
.g <- glue::glue
##paste
paste(cran_mirror, "src/contrib/Archive/", x, "/", x, "_", version, ".tar.gz", sep = "")
##g
.g("{cran_mirror}src/contrib/Archive/{x}/{x}_{version}.tar.gz") |
I let you make this call. Personally, I prefer |
Let's keep |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With
vctrs
introduced to fix #69, we can now useglue
andcli
.vctrs
needs them anyway.We can somehow
The text was updated successfully, but these errors were encountered: