From ee85c1424d9c4c3e24122665787c4119a1df1d98 Mon Sep 17 00:00:00 2001 From: tanmaydimriGSOC Date: Wed, 10 Dec 2025 16:54:33 +0530 Subject: [PATCH] Fix #829: Pass ellipsis to download() function --- R/install-version.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/install-version.R b/R/install-version.R index bd9b6260..a7126887 100644 --- a/R/install-version.R +++ b/R/install-version.R @@ -179,7 +179,7 @@ download_version <- function(package, version = NULL, repos = getOption("repos"), type = getOption("pkgType"), ...) { url <- download_version_url(package, version, repos, type) - download(path = tempfile(), url = url) + download(path = tempfile(), url = url, ...) } download_version_url <- function(package, version, repos, type, available, verbose = length(repos) > 1) {