From 4ddb6e89ccfcf497d73ce844241cb044f934c4f0 Mon Sep 17 00:00:00 2001 From: Tan Date: Sun, 21 Sep 2025 13:12:57 -0400 Subject: [PATCH 1/3] remove check-envvar-print from check_built() - r-lib/rcmdcheck#237 --- R/check.R | 4 ---- 1 file changed, 4 deletions(-) diff --git a/R/check.R b/R/check.R index 11489ffb1..1f9df4b42 100644 --- a/R/check.R +++ b/R/check.R @@ -212,10 +212,6 @@ check_built <- function(path = NULL, cran = TRUE, } env_vars <- check_env_vars(cran, remote, incoming, force_suggests, env_vars) - if (!quiet) { - cat_rule("Checking", col = "cyan", line = 2) - show_env_vars(env_vars) - } withr::with_envvar(env_vars, action = "replace", { rcmdcheck::rcmdcheck(path, From fa5cdb5857d32b039bd2c11616f58b8e95d828a6 Mon Sep 17 00:00:00 2001 From: Tan Date: Sun, 21 Sep 2025 13:17:23 -0400 Subject: [PATCH 2/3] update news --- NEWS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NEWS.md b/NEWS.md index c67e0bc1c..726438ebd 100644 --- a/NEWS.md +++ b/NEWS.md @@ -8,6 +8,8 @@ * `test_coverage_active_file()` now reports if any tests failed and does a better job of executing snapshot comparisons. +* `check_built()` no longer prints check env variables - now handled by `rcmdcheck::rcmdcheck()` directly as of r-lib/rcmdcheck#237 (#2621) + # devtools 2.4.5 * `check(cleanup =)` was deprecated in devtools v1.11.0 (2016-04-12) and was From d0865e4143a85e537a418955b44e102828a69301 Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Wed, 21 Jan 2026 11:20:06 -0600 Subject: [PATCH 3/3] Move bullet to correct place --- NEWS.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 720d363c8..7e930a4bf 100644 --- a/NEWS.md +++ b/NEWS.md @@ -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) * `is_loading()` is now re-exported from pkgload (#2556). * `load_all()` now errors if called recursively, i.e. if you accidentally include a `load_all()` call in one of your R source files (#2617). @@ -13,8 +14,6 @@ * `test_coverage_active_file()` now reports if any tests failed and does a better job of executing snapshot comparisons. -* `check_built()` no longer prints check env variables - now handled by `rcmdcheck::rcmdcheck()` directly as of r-lib/rcmdcheck#237 (#2621) - * `dev_mode()` and `check_rhub()` are deprecated. # devtools 2.4.5