From f53320462cbd714183c9992594598861d275cc5d Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Mon, 9 Sep 2024 10:35:40 -0400 Subject: [PATCH] Do not install shiny. (as it is in the package deps, now); Do not install shinycoreci, it's causing issues and isn't used for CI testing --- R/install.R | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/R/install.R b/R/install.R index a38a54f30e..663b30d2b2 100644 --- a/R/install.R +++ b/R/install.R @@ -168,7 +168,14 @@ install_missing_pkgs <- function( # Make sure to get underlying dependencies # Always add shiny as it is always needed # Only install shinycoreci if the libpath is shinycoreci_libpath() - packages <- unique(c(packages, get_extra_shinyverse_deps(c(packages, "shiny", if (libpath == shinycoreci_libpath()) "shinycoreci" )))) + packages <- unique(c( + packages, + get_extra_shinyverse_deps(c( + packages, + # if (libpath == shinycoreci_libpath()) "shinycoreci" , + NULL + )) + )) pkgs_to_install <- packages[!(packages %in% names(installed_pkgs))]