Uh oh!
There was an error while loading. Please reload this page.
Fix #829: Pass ellipsis to download() function - #843
Conversation
tanmaydimriGSOC
commented
Dec 10, 2025
Note on CI FailuresThe current CI failures appear to be pre-existing issues in the repository and are not introduced by this PR. Specifically:
This PR only updates a single line in R/install-version.R to correctly forward ... in download_version(). Local verification: devtools::load_all() This returns the expected download path, confirming the fix works as intended. Happy to adjust anything related to this specific change ! |
Summary
Fixes#829 - Forward the
...parameter to thedownload()function call.Problem
The
...parameter was declared indownload_version()signature but never used, preventing users from passing additional download options.Solution
Pass
...to thedownload()function call on line 183.Changes
Testing
Fixes#829.