Skip to content

Commit

Permalink
namespace utils::untar
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed Sep 25, 2024
1 parent d21240c commit cabeecb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: pkgsimil
Title: Similarity Metrics between R Packages
Version: 0.1.2.111
Version: 0.1.2.112
Authors@R: c(
person("Mark", "Padgham", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-2172-5265")))
Expand Down
2 changes: 1 addition & 1 deletion R/get-pkg-data.R
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ tarball_to_path <- function (path) {
path2 <- fs::path (tempdir, basename (path))
fs::file_copy (path, path2)
base_dir <- fs::path (tempdir, gsub ("\\.tar\\.gz$", "", basename (path)))
untar (path2, exdir = tempdir)
utils::untar (path2, exdir = tempdir)
fs::file_delete (path2)

fs::dir_ls (tempdir)
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"codeRepository": "https://github.com/ropensci-review-tools/pkgsimil",
"issueTracker": "https://github.com/ropensci-review-tools/pkgsimil/issues",
"license": "https://spdx.org/licenses/MIT",
"version": "0.1.2.111",
"version": "0.1.2.112",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down

0 comments on commit cabeecb

Please sign in to comment.