Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
ignore archive in proposal process
  • Loading branch information
aaronpeikert committed Nov 6, 2019
1 parent 08efec1 commit 97373af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proposals.R
Expand Up @@ -28,8 +28,8 @@ parse_entry <- function(file, file_name){
str_c(title, "\n\n", file$body, appendix)
}

file_names <- dir_ls(here("proposals"))
files <- dir_map(here("proposals"), read_file) %>%
file_names <- dir_ls(here("proposals"), type = "file")
files <- dir_map(here("proposals"), read_file, type = "file") %>%
str_split("\n") %>%
map(split_yaml)

Expand Down

0 comments on commit 97373af

Please sign in to comment.