Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/eliocamp/rcdo
Browse files Browse the repository at this point in the history
  • Loading branch information
eliocamp committed Jan 21, 2025
2 parents 59aa8ee + 8c6bf1e commit b482c81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg_build/extra-R/cdo.R
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ ephemeral_file <- R6::R6Class("ephemeral_file", public = list(
finalize = function() {
to_delete <- file.exists(self$file)
if (any(to_delete)) {
file.remove(self$file[to_delete])
try(file.remove(self$files[to_delete]), silent = TRUE)
}
})
)
Expand Down

0 comments on commit b482c81

Please sign in to comment.