Skip to content

Commit 7f06fa6

Browse files
author
hornik
committed
Tweaks for c87814.
git-svn-id: https://svn.r-project.org/R/trunk@87900 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent 9fb1a04 commit 7f06fa6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/library/tools/R/utils.R

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2156,7 +2156,13 @@ function(dir)
21562156
files <- list_files_with_type(file.path(dir, "R"), "code",
21572157
full.names = FALSE,
21582158
OS_subdirs = c("unix", "windows"))
2159-
db <- Rd_db(dir = dir)
2159+
## As of 2025-03, packages
2160+
## gmailr httr2 purrr
2161+
## use configure code to drop the pipe using examples for R < 4.1.
2162+
db <- if(basename(dir) %in% c("gmailr", "httr2", "purrr"))
2163+
list()
2164+
else
2165+
Rd_db(dir = dir)
21602166

21612167
do.call(rbind,
21622168
c(Map(function(u, v) {

0 commit comments

Comments
 (0)