Skip to content

Commit

Permalink
Do not install shiny. (as it is in the package deps, now); Do not ins…
Browse files Browse the repository at this point in the history
…tall shinycoreci, it's causing issues and isn't used for CI testing
  • Loading branch information
schloerke committed Sep 9, 2024
1 parent f9705b8 commit f533204
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion R/install.R
Original file line number Diff line number Diff line change
Expand Up @@ -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))]

Expand Down

0 comments on commit f533204

Please sign in to comment.