From a8628cfcac7c2708c1f5f6e1b3828394cd892c15 Mon Sep 17 00:00:00 2001 From: Stephanie Zimmer Date: Sun, 31 Mar 2024 12:07:57 -0400 Subject: [PATCH] Update colophon package source --- 01-introduction.Rmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/01-introduction.Rmd b/01-introduction.Rmd index 22cfee05..b6056283 100644 --- a/01-introduction.Rmd +++ b/01-introduction.Rmd @@ -167,8 +167,8 @@ packinfo_tib <- attached=packinfo$attached) %>% mutate( Source=case_when( - str_detect(SourceLong, "CRAN")~SourceLong, - str_detect(SourceLong, "Github")~str_c(str_extract(SourceLong, "^[^@]+@.{7}"), ")") + str_detect(SourceLong, "Github")~str_c(str_extract(SourceLong, "^[^@]+@.{7}"), ")"), + TRUE~SourceLong ) ) %>% filter(attached|Package %in% c("remotes")) %>%