Skip to content

Commit

Permalink
Fix pdf paths
Browse files Browse the repository at this point in the history
  • Loading branch information
joelnitta committed Oct 6, 2023
1 parent 061e6cb commit 7a42cde
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions R/pub-prep.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,12 @@ mybib_df_raw <-
)
# Load other metadata
mybib_meta <- read_csv(here::here("_bib/ref_metadata.csv")) %>%
select(-title) %>%
mutate(`file-pdf` = here::here(`file-pdf`))
select(-title)
# Check that all pdf files exist
check_pdfs(mybib_meta)
mybib_meta %>%
mutate(`file-pdf` = here::here(`file-pdf`)) %>%
check_pdfs()
# Format dataframe version of bibliography
mybib_df <-
Expand Down

0 comments on commit 7a42cde

Please sign in to comment.