From 589013f8e075cecbd8e86f07a9b72d12aabd47b5 Mon Sep 17 00:00:00 2001 From: boB Rudis Date: Fri, 12 Jul 2019 17:05:54 -0400 Subject: [PATCH] fix travis vignette errors --- vignettes/building-pictograms.Rmd | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vignettes/building-pictograms.Rmd b/vignettes/building-pictograms.Rmd index 4310cc1..80c4c07 100644 --- a/vignettes/building-pictograms.Rmd +++ b/vignettes/building-pictograms.Rmd @@ -35,8 +35,7 @@ extrafont::loadfonts(quiet = TRUE) extrafont::fonttable() %>% as_tibble() %>% - filter(grepl("Awesom", FamilyName)) %>% - select(afmfile, FullName, FamilyName, FontName) + filter(grepl("Awesom", FamilyName)) ``` Because it's 2019 and fonts are still daftly difficult across operating systems you may have different `FontName` or `FamilyName` values for each. If so, you won't be able to use the shortcut names and will have to work some things out on your own or file an issue so I can try to account for your setup in the package itself.