Skip to content

Commit

Permalink
Fix for NO_REFERENCES symbol errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Oct 30, 2024
1 parent ee7016e commit 9fe04de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rechecktools/R/linux-binaries.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ preinstall_linux_binaries <- function(tocheck){
rver <- getRversion()
distro <- system2('lsb_release', '-sc', stdout = TRUE)
options(HTTPUserAgent = sprintf("R/%s R (%s); r-universe (%s)", rver, paste(rver, R.version$platform, R.version$arch, R.version$os), distro))
bioc <- sprintf("https://bioc.r-universe.dev/bin/linux/%s/4/", distro)
bioc <- sprintf("https://bioc.r-universe.dev/bin/linux/%s/%s/", distro, substr(rver, 1, 3))
cran <- sprintf("https://p3m.dev/cran/__linux__/%s/latest", distro)
repos <- c(cran, bioc)
db <- utils::available.packages(repos = c(CRAN = cran, BIOC = bioc, official_bioc_repos()))
Expand Down

0 comments on commit 9fe04de

Please sign in to comment.