Skip to content

Commit

Permalink
Fix linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
herreio committed Dec 6, 2024
1 parent 49e9391 commit b75ba40
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions utils/render
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
#!/usr/bin/env Rscript
fps <- list.files("docs", pattern=".*\\.Rmd", full.names = T, recursive = T)
for (fp in fps) { rmarkdown::render(fp, output_format = "all", output_dir = "public") }
fps <- list.files(
"docs",
pattern = ".*\\.Rmd",
full.names = TRUE,
recursive = TRUE
)
for (fp in fps) {
rmarkdown::render(fp, output_format = "all", output_dir = "public")
}

0 comments on commit b75ba40

Please sign in to comment.