Skip to content

Commit

Permalink
Merge pull request #75 from thomaszwagerman/main
Browse files Browse the repository at this point in the history
Fixing `ctags_install()` failure due to unused argument `fileext`
  • Loading branch information
mpadge authored Oct 30, 2024
2 parents e6c0d98 + e66c1d4 commit f035d53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/ctags-install.R
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ctags_make <- function (ctags_dir, bin_dir = NULL, sudo = TRUE) {
stop ("A value for 'bin_dir' must be specified when 'sudo = FALSE'")
}

f <- fs::file_temp (pattern = "ctags-make-", fileext = ".txt")
f <- fs::file_temp (pattern = "ctags-make-", ext = ".txt")

confargs <- NULL
if (!is.null (bin_dir)) {
Expand Down

0 comments on commit f035d53

Please sign in to comment.