From 9ba790e0edd292bf4361d7250dd43f4f7167530b Mon Sep 17 00:00:00 2001 From: mikefc Date: Tue, 9 Apr 2024 00:24:02 +0000 Subject: [PATCH] fix use of normalizePath [no ci] --- R/json.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/json.R b/R/json.R index dd405ae..924e30a 100644 --- a/R/json.R +++ b/R/json.R @@ -143,7 +143,7 @@ write_json_file <- function(x, filename, opts = list(), ...) { .Call( serialize_to_file_, x, - normalizePath(filename), + normalizePath(filename, mustWork = FALSE), modify_list(opts, list(...)) )