From 49d046f850f736506fc21cd71e5b324a8412ab61 Mon Sep 17 00:00:00 2001 From: Bruno Rodrigues Date: Tue, 30 Jul 2024 07:53:20 +0200 Subject: [PATCH] Update with_nix.R fixing #275 --- R/with_nix.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/with_nix.R b/R/with_nix.R index 8a0bb7bd..c6a93cd2 100644 --- a/R/with_nix.R +++ b/R/with_nix.R @@ -230,7 +230,7 @@ with_nix <- function(expr, # `` and `value` as serialized objects from RAM ------------------- temp_dir <- file.path(tempdir(), "with_nix") if (!dir.exists(temp_dir)) { - dir.create(temp_dir) + dir.create(temp_dir, recursive = TRUE) } serialize_args(args, temp_dir)