Skip to content

Commit

Permalink
set extra_flags to NULL
Browse files Browse the repository at this point in the history
  • Loading branch information
hutch3232 committed Mar 5, 2024
1 parent b8fff04 commit 40e8add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion r/R/install-arrow.R
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Expand Down

0 comments on commit 40e8add

Please sign in to comment.