We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
repos
Related to:
In Positron, we do in fact set repos to "https://cran.rstudio.com/" the same as RStudio:
"https://cran.rstudio.com/"
https://github.com/posit-dev/ark/blob/9387883055176bb0493b9893cd392f53a1bda0ed/crates/ark/src/modules/positron/options.R#L30-L45
But RStudio also adds an attribute:
getOption("repos") #> CRAN #> "https://cran.rstudio.com/" #> attr(,"RStudio") #> [1] TRUE
Created on 2024-08-06 with reprex v2.1.1
Let's add an attribute of "Positron" so that renv can pick it up in its logic for deciding whether to use PPM.
The text was updated successfully, but these errors were encountered:
Once we bump ark, we can verify that we now see an attribute on this option:
getOption("repos") #> CRAN #> "https://cran.rstudio.com/" #> attr(,"IDE") #> [1] TRUE
Created on 2024-09-04 with reprex v2.1.1
I will also need to update at rstudio/renv#1963 once this is in a publicly available release build.
Sorry, something went wrong.
Positron Version(s) : 2024.09.0-11 OS Version : OSX
getOption("repos")
CRAN "https://cloud.r-project.org"
Link(s) to TestRail test cases run or created: N/A
juliasilge
No branches or pull requests
Related to:
In Positron, we do in fact set
repos
to"https://cran.rstudio.com/"
the same as RStudio:https://github.com/posit-dev/ark/blob/9387883055176bb0493b9893cd392f53a1bda0ed/crates/ark/src/modules/positron/options.R#L30-L45
But RStudio also adds an attribute:
Created on 2024-08-06 with reprex v2.1.1
Let's add an attribute of "Positron" so that renv can pick it up in its logic for deciding whether to use PPM.
The text was updated successfully, but these errors were encountered: