Skip to content

Commit

Permalink
Fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
hsonne committed Sep 27, 2023
1 parent 8a55071 commit b9b8a36
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions R/install_abimo.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
#' @importFrom kwb.utils catAndRun createDirectory
install_abimo <- function(
tag = latest_abimo_version(),
arch = get_architecture_suffix()
arch = get_architecture_suffix(),
...
)
{
expected_architectures <- c("windows", "linux", "macos")
Expand All @@ -27,7 +28,8 @@ install_abimo <- function(
zip_files <- download_assets(
repo = "KWB-R/abimo",
tag = tag,
pattern = sprintf("abimo_%s_%s\\.", tag, arch)
pattern = sprintf("abimo_%s_%s\\.", tag, arch),
...
)

stopifnot(length(zip_files) == 1L)
Expand Down

0 comments on commit b9b8a36

Please sign in to comment.