Skip to content

Commit

Permalink
create_DataFile():
Browse files Browse the repository at this point in the history
- rm tolower in the file path, it does not always work
  • Loading branch information
RLumSK committed Sep 21, 2023
1 parent a44f2c0 commit 2d89d7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/create_DataFile.R
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ create_DataFile <- function(

} else {
## import files as specified -------
out <- lapply(suppressWarnings(normalizePath(tolower(config[[x]]$files))), function(x) {
out <- lapply(suppressWarnings(normalizePath(config[[x]]$files)), function(x) {
if (!file.exists(x))
stop(paste0("[create_DataFile()] file <", x, "> does not exist!"), call. = FALSE)

Expand Down

0 comments on commit 2d89d7c

Please sign in to comment.