Skip to content

Commit

Permalink
Fix here_*()
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardlavender committed Oct 22, 2024
1 parent e058c1a commit 93f9a51
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/utils.R
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
here_input <- function() {
here::here("data", "patter", "input")
here_input <- function(...) {
here::here("data", "patter", "input", ...)
}

here_output <- function() {
here::here("data", "patter", "output")
here_output <- function(...) {
here::here("data", "patter", "output", ...)
}

os_linux <- function() {
Expand Down

0 comments on commit 93f9a51

Please sign in to comment.