From 3ded2a1c04d4c70f465ebbb61ca07b7e8a372587 Mon Sep 17 00:00:00 2001 From: Jenny Bryan Date: Sun, 8 May 2022 16:25:15 -0700 Subject: [PATCH] Unconditionally encode paths as UTF-8 --- R/path.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/path.R b/R/path.R index 8863e4ed..b440c1ac 100644 --- a/R/path.R +++ b/R/path.R @@ -60,7 +60,7 @@ standardise_path <- function(path) { } } - as.list(path) + as.list(enc2utf8(path)) } standardise_one_path <- function (path, write = FALSE) {