From b9b8a36de99670a3f6ffaf4a6cb33b935705e1cb Mon Sep 17 00:00:00 2001 From: hsonne Date: Wed, 27 Sep 2023 10:55:20 +0200 Subject: [PATCH] Fix conflict --- R/install_abimo.R | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/R/install_abimo.R b/R/install_abimo.R index 43f4cbb..e940561 100644 --- a/R/install_abimo.R +++ b/R/install_abimo.R @@ -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") @@ -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)