From 40e8add8af21f99a7e853f3ac4fc68768ea51fa2 Mon Sep 17 00:00:00 2001 From: Paul Donnelly Date: Mon, 4 Mar 2024 20:27:59 -0600 Subject: [PATCH] set `extra_flags` to `NULL` --- r/R/install-arrow.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r/R/install-arrow.R b/r/R/install-arrow.R index 88eb61a5dae76..74d3a96454777 100644 --- a/r/R/install-arrow.R +++ b/r/R/install-arrow.R @@ -251,7 +251,7 @@ create_package_with_all_dependencies <- function(dest_file = NULL, source_file = setwd(untar_dir) message("Repacking tar.gz file to ", dest_file) - tar_successful <- utils::tar(dest_file, compression = "gz") == 0 + tar_successful <- utils::tar(dest_file, compression = "gz", extra_flags = NULL) == 0 if (!tar_successful) { stop("Failed to create new tar.gz file") }