Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# devtools (development version)

* `check_built()` no longer prints `R_CHECK_` check env variables - now handled by `rcmdcheck::rcmdcheck()` directly as of r-lib/rcmdcheck#237 (#2621)
* remotes has moved from Imports to Suggests (#2663).
* `bash()`, `create()`, `missing_s3()`, `reload()`, `show_news()`, and `wd()` are now deprecated. These functions are all historical parts of our workflow that we no longer use or recommend. `create()` is superseded by `usethis::create_package()`.
* `build_manual()` reports more details on failure (#2586).
Expand Down
4 changes: 0 additions & 4 deletions R/check.R
Original file line number Diff line number Diff line change
Expand Up @@ -224,10 +224,6 @@ check_built <- function(
}

env_vars <- check_env_vars(cran, remote, incoming, force_suggests, env_vars)
if (!quiet) {
cli::cat_rule("Checking", col = "cyan", line = 2)
show_env_vars(env_vars)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See here I'd explicitly filter out _R_CHECK_ env vars since we know that rcmdcheck will handle them.

}

withr::with_envvar(env_vars, action = "replace", {
rcmdcheck::rcmdcheck(
Expand Down