From e5b7e5bf8284c392743cfe0ecd6bd2033e839032 Mon Sep 17 00:00:00 2001 From: Anthony Williams Date: Thu, 17 Nov 2022 09:32:28 -0800 Subject: [PATCH] Update package repo to focal for ubuntu 20 (#436) --- install-pkgs.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-pkgs.R b/install-pkgs.R index c7e084fa..3a23669b 100644 --- a/install-pkgs.R +++ b/install-pkgs.R @@ -32,7 +32,7 @@ gh <- c( # The binary package distributions from R Studio dramatically speed up installation time # For Ubuntu 18.04 (Bionic) it's https://packagemanager.rstudio.com/all/__linux__/bionic/latest # For Ubuntu 20.04 (Focal) it's https://packagemanager.rstudio.com/all/__linux__/focal/latest -options(repos = c(REPO_NAME = "https://packagemanager.rstudio.com/all/__linux__/bionic/latest", getOption("repos"))) +options(repos = c(REPO_NAME = "https://packagemanager.rstudio.com/all/__linux__/focal/latest", getOption("repos"))) install.packages("remotes") invisible( @@ -40,4 +40,4 @@ invisible( remotes::install_version(cran_pkg[1], version = cran_pkg[2]) }) ) -remotes::install_github(gh) \ No newline at end of file +remotes::install_github(gh)