Skip to content

Commit 07292ed

Browse files
committed
Don't install dependencies in build_readme()
This is a bandaid for #2683. I'd still like a nicer solution, so I won't close that issue.
1 parent 0cfeff4 commit 07292ed

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

R/install.R

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,5 +254,12 @@ local_install <- function(pkg = ".", quiet = TRUE, env = parent.frame()) {
254254
))
255255
}
256256
withr::local_temp_libpaths(.local_envir = env)
257-
install(pkg, upgrade = FALSE, reload = FALSE, quick = TRUE, quiet = quiet)
257+
install(
258+
pkg,
259+
upgrade = FALSE,
260+
reload = FALSE,
261+
quick = TRUE,
262+
dependencies = FALSE,
263+
quiet = quiet
264+
)
258265
}

0 commit comments

Comments
 (0)