Skip to content

Commit

Permalink
fix: restore additional dependency installation (#39)
Browse files Browse the repository at this point in the history
walkowif authored Jul 8, 2024
1 parent 79999f2 commit 52cfa05
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions staged-dependencies.R
Original file line number Diff line number Diff line change
@@ -146,3 +146,11 @@ if (file.exists("staged_dependencies.yaml")) {
quiet = sd_quiet
)
}

# Install any remaining dependencies.
if (!file.exists("renv.lock") || renv_restore != "true") {
pak::local_install_deps(
dependencies = TRUE,
upgrade = FALSE
)
}

0 comments on commit 52cfa05

Please sign in to comment.