Skip to content

Commit

Permalink
Fix dependencies script
Browse files Browse the repository at this point in the history
  • Loading branch information
froggleston committed Aug 12, 2024
1 parent 3b5438c commit 8156e8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/dependencies.R
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ identify_dependencies <- function() {

required_pkgs <- unique(c(
## Packages for episodes
renv::dependencies(eps, progress = FALSE, error = "ignored")$Package,
renv::dependencies(eps, progress = FALSE, errors = c("ignored"))$Package,
## Packages for tools
renv::dependencies(bin, progress = FALSE, error = "ignored")$Package
renv::dependencies(bin, progress = FALSE, errors = c("ignored"))$Package
))

required_pkgs
Expand Down

0 comments on commit 8156e8c

Please sign in to comment.